Uses of Interface
viper.descriptors.attributes.AttributeValue

Packages that use AttributeValue
viper.descriptors.attributes Provides the classes necessary to read Attributes in from a file and compare them.  
 

Uses of AttributeValue in viper.descriptors.attributes
 

Subinterfaces of AttributeValue in viper.descriptors.attributes
 interface ExtendedAttributeValue
          Some attributes have extra config information.
 

Classes in viper.descriptors.attributes that implement AttributeValue
protected static class Attribute_bbox.Bbox
           
protected static class Attribute_circle.CircleValue
           
protected static class Attribute_ellipse.EllipseValue
           
protected static class Attribute_number.NumberValue
           
protected static class Attribute_obox.Obox
           
(package private) static class viper.descriptors.attributes.Attribute_polygon.AbstractPolygonValue
           
 

Methods in viper.descriptors.attributes that return AttributeValue
 AttributeValue ValueSpan.getValue()
          Gets the start of the value.
 AttributeValue AttributeValue.setValue(java.lang.String S)
          Returns a new copy of the object with the data the String represents.
 AttributeValue AttributeValue.setValue(org.w3c.dom.Element el)
          Returns a new copy of the object set to the data the xml-dom element represents.
 AttributeValue Attribute_obox.Obox.setValue(org.w3c.dom.Element el)
          Sets the state of the object to the data the xml-dom element represents.
 AttributeValue Attribute_obox.Obox.setValue(java.lang.String S)
          Sets the state of the object to the data the String represents.
 AttributeValue Attribute_ellipse.EllipseValue.setValue(org.w3c.dom.Element el)
          Sets the state of the object to the data the xml-dom element represents.
 AttributeValue Attribute_ellipse.EllipseValue.setValue(java.lang.String S)
          Sets the state of the object to the data the String represents.
 AttributeValue Attribute_circle.CircleValue.setValue(org.w3c.dom.Element el)
          Sets the state of the object to the data the xml-dom element represents.
 AttributeValue Attribute_circle.CircleValue.setValue(java.lang.String S)
          Sets the state of the object to the data the String represents.
 AttributeValue Attribute_bbox.Bbox.setValue(org.w3c.dom.Element el)
          Sets the state of the object to the data the xml-dom element represents.
 AttributeValue Attribute_bbox.Bbox.setValue(java.lang.String S)
          Sets the state of the object to the data the String represents.
 AttributeValue Attribute.getValue(FrameSpan span, int frame)
          Gets the value at a specific frame.
 AttributeValue Attribute.getStaticValue()
          Gets the value of this static attribute
 AttributeValue AbstractAttribute.getDefault()
          A default value is what an attribute is set to when created.
 AttributeValue AbstractAttribute.getArchetype()
          Gets the config value.
 

Methods in viper.descriptors.attributes with parameters of type AttributeValue
 boolean AttributeValue.validate(AttributeValue v)
          Checks to make sure that the value can be set.
 boolean Attribute_obox.Obox.validate(AttributeValue v)
           
 boolean Attribute_number.NumberValue.validate(AttributeValue v)
          Checks to make sure that the value can be set.
 boolean Attribute_ellipse.EllipseValue.validate(AttributeValue v)
          Checks to make sure that the value can be set.
 boolean Attribute_circle.CircleValue.validate(AttributeValue v)
          Checks to make sure that the value can be set.
 boolean Attribute_bbox.Bbox.validate(AttributeValue v)
           
 void Attribute.setStaticValue(AttributeValue v)
          Sets the value of this static attribute.
 void AbstractAttribute.resetDefault(AttributeValue o)
          Modifies the attribute's default value.
 void AbstractAttribute.setArchetype(AttributeValue archetype)
          ExtraConfig information is information concerning the data that is not expressed in the type itself.
 

Constructors in viper.descriptors.attributes with parameters of type AttributeValue
ValueSpan(AttributeValue v, long s, long e)
          Creates a new instance of ValueSpan.