Class AbstractTrack

    • Field Detail

      • output

        public TypedIOPort output
        The output port. The type is a that of a Record of String labels and Types.
      • trackId

        public Parameter trackId
        The id of the track. The default value is an int with the value of -1, indicating that the id has not been set.
      • lineSymbol

        public Parameter lineSymbol
        The line symbol. The default type is that of String.
      • broken

        public Parameter broken
        True if the track is broken. The default is false.
    • Constructor Detail

      • AbstractTrack

        public AbstractTrack​(CompositeEntity container,
                             java.lang.String name)
                      throws IllegalActionException,
                             NameDuplicationException
        Create a new actor in the specified container with the specified name. The name must be unique within the container or an exception is thrown. The container argument must not be null, or a NullPointerException will be thrown.
        Parameters:
        container - The container.
        name - The name of this actor within the container.
        Throws:
        IllegalActionException - If this actor cannot be contained by the proposed container (see the setContainer() method).
        NameDuplicationException - If the name coincides with an entity already in the container.