Uses of Class
peakml.io.SetInfo

Packages that use SetInfo
peakml.io   
 

Uses of SetInfo in peakml.io
 

Methods in peakml.io that return SetInfo
 SetInfo SetInfo.getChild(int index)
          Returns the child at the given index.
 SetInfo Header.getSetInfo(java.lang.String id)
          Returns the set information with the given id.
 SetInfo Header.getSetInfoForMeasurementID(int measurementid)
          Returns the set information which contains the given measurement id.
 

Methods in peakml.io that return types with arguments of type SetInfo
 java.util.Vector<SetInfo> SetInfo.getChildren()
          Returns the list with all the children.
 java.util.Vector<SetInfo> Header.getSetInfos()
          Returns all the set informations stored in the header.
 

Methods in peakml.io with parameters of type SetInfo
 void SetInfo.addChild(SetInfo child)
          Adds the given set as a child to this set.
 void Header.addSetInfo(SetInfo set)
          Adds the given set information to the header.
 java.util.Vector<MeasurementInfo> Header.getMeasurementInfos(SetInfo set)
          Returns the list of measurement informations associated to the given set.
 int Header.indexOfSetInfo(SetInfo setinfo)
          Returns the index of the set information with the given id.
 

Method parameters in peakml.io with type arguments of type SetInfo
 void Header.addSetInfos(java.util.Collection<SetInfo> sets)
          Adds the given set informations to the header.
 

Constructors in peakml.io with parameters of type SetInfo
SetInfo(SetInfo setinfo)
          Copy constructor, which makes a deep copy of the given SetInfo instance.