soot
Class Tag
java.lang.Object
|
+--soot.Tag
- public class Tag
- extends java.lang.Object
Represents a tag; these get attached to implementations of Host.
The type of the tag can be deduced from its suffix; .l denotes long,
.d denotes double, and .s denotes string.
Method Summary |
java.lang.String |
getName()
Returns the name of the current tag. |
java.lang.Object |
getValue()
Returns the value of the current tag. |
void |
setValue(java.lang.Object o)
Sets the value of the current tag. |
java.lang.String |
toString()
Returns a textual representation of the current tag. |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
getName
public java.lang.String getName()
- Returns the name of the current tag.
toString
public java.lang.String toString()
- Returns a textual representation of the current tag.
- Overrides:
- toString in class java.lang.Object
getValue
public java.lang.Object getValue()
- Returns the value of the current tag.
setValue
public void setValue(java.lang.Object o)
- Sets the value of the current tag.