/* An object that carries prioritization information to be associated with contenders in a resource contention scheme. Copyright (c) 1998-2005 The Regents of the University of California. All rights reserved. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software. IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. PT_COPYRIGHT_VERSION_2 COPYRIGHTENDKEY */ package ptolemy.domains.csp.demo.BusContention; import ptolemy.actor.IOPort; ////////////////////////////////////////////////////////////////////////// //// PortChannelCode /** A PortChannelCode is an object that carries prioritization information to be associated with different contenders in a resource contention scheme. A PortChannelCode consists of three components as its name implies and each instance of PortChannelCode is associated with a single resource contender. The port (channel) value represents the port (channel) through which a particular contender is connected. The code value represents the priority assigned to the contender. @author John S. Davis II @version $Id$ @since Ptolemy II 0.3 @Pt.ProposedRating Red (davisj) @Pt.AcceptedRating Red (cxh) */ public class PortChannelCode { /** Construct a PortChannelCode with the specified port, * channel and priority code. * @param port The specified port. * @param channel The specified channel. * @param code The specified code. */ public PortChannelCode(IOPort port, int channel, int code) { _port = port; _channel = channel; _code = code; } /////////////////////////////////////////////////////////////////// //// public methods //// /** Return the channel associated with this object. * @return The channel associated with this object. */ public int getChannel() { return _channel; } /** Return the code associated with this object. * @return The code associated with this object. */ public int getCode() { return _code; } /** Return the port associated with this object. * @return The port associated with this object. */ public IOPort getPort() { return _port; } /////////////////////////////////////////////////////////////////// //// public variables //// private IOPort _port; private int _channel; private int _code; }