Package ptolemy.kernel.util
Interface Flowable
-
- All Known Implementing Classes:
BaseDimensionRepresentativeConcept,Clone,Configure,DerivedDimensionRepresentativeConcept,DimensionlessConcept,DimensionRepresentativeConcept,Event,Execute,FiniteConcept,FlatScalarTokenRepresentativeConcept,FlatTokenRepresentativeConcept,FmvState,GTEvent,InfiniteConceptRepresentative,InitModel,InitModelWithContainer,InputModel,ListDirectory,Match,OutputModel,Plot,ProductLatticeConcept,ReadModel,ReceiveInput,Report,SetTableau,SIBaseDimensionRepresentativeConcept,SIDerivedDimensionRepresentativeConcept,Sleep,State,StateMatcher,Stop,TDLMode,Test,TestModel,Transform,TransientState,View,WriteModel
public interface FlowableAn interface for objects that have one port that serves as an input and one that serves as an output. This interface in a convenience so that graphical editors that don't care about specific ports can nonetheless render flows through the component.- Since:
- Ptolemy II 8.0
- Version:
- $Id$
- Author:
- Edward A. Lee
- See Also:
ChangeRequest- Pt.AcceptedRating:
- Red (neuendor)
- Pt.ProposedRating:
- Yellow (eal)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComponentPortgetIncomingPort()Return the incoming port.ComponentPortgetOutgoingPort()Return the outgoing port.
-
-
-
Method Detail
-
getIncomingPort
ComponentPort getIncomingPort()
Return the incoming port.- Returns:
- The incoming port.
-
getOutgoingPort
ComponentPort getOutgoingPort()
Return the outgoing port.- Returns:
- The outgoing port.
-
-