Package org.yamcs.xtce
Class ParameterEntry
- java.lang.Object
-
- org.yamcs.xtce.SequenceEntry
-
- org.yamcs.xtce.ParameterEntry
-
- All Implemented Interfaces:
Serializable,Comparable<SequenceEntry>
- Direct Known Subclasses:
ArrayParameterEntry
public class ParameterEntry extends SequenceEntry
An entry that is a single Parameter- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.yamcs.xtce.SequenceEntry
SequenceEntry.ReferenceLocationType
-
-
Field Summary
-
Fields inherited from class org.yamcs.xtce.SequenceEntry
container, locationInContainerInBits
-
-
Constructor Summary
Constructors Constructor Description ParameterEntry(int locationInContainerInBits, SequenceEntry.ReferenceLocationType location)Constructor for an unresolved ParameterEntry.ParameterEntry(int locationInContainerInBits, SequenceEntry.ReferenceLocationType location, Parameter parameter)Constructor for parameter entry.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParametergetParameter()voidsetParameter(Parameter parameter)StringtoString()-
Methods inherited from class org.yamcs.xtce.SequenceEntry
compareTo, getContainer, getIncludeCondition, getIndex, getLocationInContainerInBits, getReferenceLocation, getRepeatEntry, getSequenceContainer, setIncludeCondition, setLocation, setLocationInContainerInBits, setReferenceLocation, setRepeatEntry
-
-
-
-
Constructor Detail
-
ParameterEntry
public ParameterEntry(int locationInContainerInBits, SequenceEntry.ReferenceLocationType location, Parameter parameter)Constructor for parameter entry. The parameter to which it reffers will be set later withsetParameter(Parameter)- Parameters:
locationInContainerInBits-location-parameter-
-
ParameterEntry
public ParameterEntry(int locationInContainerInBits, SequenceEntry.ReferenceLocationType location)Constructor for an unresolved ParameterEntry. The Parameter will come later viasetParameter(Parameter)- Parameters:
locationInContainerInBits-location-
-
-