Package org.graffiti.attributes
Class ShortAttribute
java.lang.Object
org.graffiti.attributes.AbstractAttribute
org.graffiti.attributes.ShortAttribute
- All Implemented Interfaces:
Attribute,DeepCopy,Displayable
public class ShortAttribute extends AbstractAttribute
Contains a short
- Version:
- $Revision: 1.5 $
-
Field Summary
-
Constructor Summary
Constructors Constructor Description ShortAttribute(String id)Constructs a new instance of aShortAttribute.ShortAttribute(String id, short value)Constructs a new instance of aShortAttributewith the given value.ShortAttribute(String id, Short value)Constructs a new instance of aShortAttributewith the given value. -
Method Summary
Modifier and Type Method Description Objectcopy()Returns a deep copy of this instance.shortgetShort()Returns the value of this object.ObjectgetValue()Returns the value of the attribute wrapped in anShortobject.voidsetDefaultValue()The attribute's value is set so that itsgetValue()method will not returnnull.voidsetShort(short value)Set the value of this Object.StringtoXMLString()Returns a well-formed XML string representing the Displayable.Methods inherited from class org.graffiti.attributes.AbstractAttribute
addEdgeAttributeType, addNodeAttributeType, getAttributable, getDescription, getIcon, getId, getName, getParent, getPath, getTypedAttribute, isDeleted, isTypedAttributeFromID, setDeleted, setDescription, setId, setParent, setValue, toString, toString
-
Constructor Details
-
ShortAttribute
Constructs a new instance of aShortAttribute.- Parameters:
id- the id of the attribute
-
ShortAttribute
Constructs a new instance of aShortAttributewith the given value.- Parameters:
id- the id of the attribute.value- the value of the attribute.
-
ShortAttribute
Constructs a new instance of aShortAttributewith the given value.- Parameters:
id- the id of the attribute.value- the value of the attribute.
-
-
Method Details
-
setDefaultValue
public void setDefaultValue()Description copied from interface:AttributeThe attribute's value is set so that itsgetValue()method will not returnnull.- See Also:
Attribute.setDefaultValue()
-
setShort
public void setShort(short value)Set the value of this Object.- Parameters:
value- the new value for this object.
-
getShort
public short getShort()Returns the value of this object.- Returns:
- the value of this object.
-
getValue
Returns the value of the attribute wrapped in anShortobject.- Returns:
- the value of the attribute wrapped in an
Shortobject.
-
copy
Returns a deep copy of this instance.- Returns:
- a deep copy of this instance.
-
toXMLString
Description copied from interface:DisplayableReturns a well-formed XML string representing the Displayable. The Displayable should be reconstructable via this representation. Therefore it must at least include the type of Displayable (classname) and a representation of its value. PROBABLE FUTURE DESIGN: The Displayables themselves will provide a method to reconstruct their value from the XML representation they provided.- Specified by:
toXMLStringin interfaceDisplayable- Overrides:
toXMLStringin classAbstractAttribute- Returns:
- string holding an XML representation of this Displayable
- See Also:
Displayable.toXMLString()
-