Uses of Class
uk.ac.vamsas.objects.core.Property

Packages that use Property
uk.ac.vamsas.objects   
uk.ac.vamsas.objects.core   
uk.ac.vamsas.objects.utils   
 

Uses of Property in uk.ac.vamsas.objects
 

Methods in uk.ac.vamsas.objects with parameters of type Property
 void EmptyDocumentUpdater.update(Property vobj)
           
 void IDocumentUpdater.update(Property vobj)
           
 

Uses of Property in uk.ac.vamsas.objects.core
 

Methods in uk.ac.vamsas.objects.core that return Property
 Property Alignment.getProperty(int index)
          Method getProperty.
 Property[] Alignment.getProperty()
          Method getProperty.Returns the contents of the collection in an Array.
 Property Alignment.removePropertyAt(int index)
          Method removePropertyAt.
 Property DbRef.getProperty(int index)
          Method getProperty.
 Property[] DbRef.getProperty()
          Method getProperty.Returns the contents of the collection in an Array.
 Property DbRef.removePropertyAt(int index)
          Method removePropertyAt.
 Property Entry.getProperty(int index)
          Method getProperty.
 Property[] Entry.getProperty()
          Method getProperty.Returns the contents of the collection in an Array.
 Property Entry.removePropertyAt(int index)
          Method removePropertyAt.
 Property NodeType.getProperty(int index)
          Method getProperty.
 Property[] NodeType.getProperty()
          Method getProperty.Returns the contents of the collection in an Array.
 Property NodeType.removePropertyAt(int index)
          Method removePropertyAt.
static Property Property.unmarshal(java.io.Reader reader)
          Method unmarshal.
 Property RangeAnnotation.getProperty(int index)
          Method getProperty.
 Property[] RangeAnnotation.getProperty()
          Method getProperty.Returns the contents of the collection in an Array.
 Property RangeAnnotation.removePropertyAt(int index)
          Method removePropertyAt.
 Property SequenceType.getProperty(int index)
          Method getProperty.
 Property[] SequenceType.getProperty()
          Method getProperty.Returns the contents of the collection in an Array.
 Property SequenceType.removePropertyAt(int index)
          Method removePropertyAt.
 Property Tree.getProperty(int index)
          Method getProperty.
 Property[] Tree.getProperty()
          Method getProperty.Returns the contents of the collection in an Array.
 Property Tree.removePropertyAt(int index)
          Method removePropertyAt.
 

Methods in uk.ac.vamsas.objects.core with parameters of type Property
 void Alignment.addProperty(Property vProperty)
           
 void Alignment.addProperty(int index, Property vProperty)
           
 boolean Alignment.removeProperty(Property vProperty)
          Method removeProperty.
 void Alignment.setProperty(int index, Property vProperty)
           
 void Alignment.setProperty(Property[] vPropertyArray)
           
 void DbRef.addProperty(Property vProperty)
           
 void DbRef.addProperty(int index, Property vProperty)
           
 boolean DbRef.removeProperty(Property vProperty)
          Method removeProperty.
 void DbRef.setProperty(int index, Property vProperty)
           
 void DbRef.setProperty(Property[] vPropertyArray)
           
 void Entry.addProperty(Property vProperty)
           
 void Entry.addProperty(int index, Property vProperty)
           
 boolean Entry.removeProperty(Property vProperty)
          Method removeProperty.
 void Entry.setProperty(int index, Property vProperty)
           
 void Entry.setProperty(Property[] vPropertyArray)
           
 void NodeType.addProperty(Property vProperty)
           
 void NodeType.addProperty(int index, Property vProperty)
           
 boolean NodeType.removeProperty(Property vProperty)
          Method removeProperty.
 void NodeType.setProperty(int index, Property vProperty)
           
 void NodeType.setProperty(Property[] vPropertyArray)
           
 void RangeAnnotation.addProperty(Property vProperty)
           
 void RangeAnnotation.addProperty(int index, Property vProperty)
           
 boolean RangeAnnotation.removeProperty(Property vProperty)
          Method removeProperty.
 void RangeAnnotation.setProperty(int index, Property vProperty)
           
 void RangeAnnotation.setProperty(Property[] vPropertyArray)
           
 void SequenceType.addProperty(Property vProperty)
           
 void SequenceType.addProperty(int index, Property vProperty)
           
 boolean SequenceType.removeProperty(Property vProperty)
          Method removeProperty.
 void SequenceType.setProperty(int index, Property vProperty)
           
 void SequenceType.setProperty(Property[] vPropertyArray)
           
 void Tree.addProperty(Property vProperty)
           
 void Tree.addProperty(int index, Property vProperty)
           
 boolean Tree.removeProperty(Property vProperty)
          Method removeProperty.
 void Tree.setProperty(int index, Property vProperty)
           
 void Tree.setProperty(Property[] vPropertyArray)
           
 

Uses of Property in uk.ac.vamsas.objects.utils
 

Methods in uk.ac.vamsas.objects.utils that return Property
static Property Properties.newProperty(java.lang.String name, java.lang.String type, java.lang.String content)
           
 

Methods in uk.ac.vamsas.objects.utils with parameters of type Property
static boolean Properties.addOrReplace(java.util.Vector properties, Property newprop)
          add newprop to properties, or update the value of an existing property with the same exact name and type.
static boolean Properties.isValid(Property p)
          validate property p against the known type strings and try to parse the content string accordingly
static boolean Properties.isString(Property p)
          String content test
static boolean Properties.isFloat(Property p)
          Float content test
static boolean Properties.isInteger(Property p)
          Integer content test
static boolean Properties.isBoolean(Property p)
          Boolean content test
static boolean Properties.isType(Property p, java.lang.String typeString)