java.lang.Object
com.tripi.asp.DefaultNode
com.tripi.asp.NullNode
- All Implemented Interfaces:
- Node
- public class NullNode
- extends DefaultNode
NullNode represents the NULL value in Asp code.
- Version:
- 0.9
|
Constructor Summary |
NullNode()
Constructor |
|
Method Summary |
void |
dump()
Dumps the string representation of this node. |
boolean |
equals(java.lang.Object obj)
This function always returns true if it is being compared to a null
value, or if the other value is a NullNode object. |
int |
hashCode()
NullNodes all have the hashcode of zero. |
NullNode
public NullNode()
- Constructor
dump
public void dump()
- Dumps the string representation of this node.
- Specified by:
dump in interface Node- Overrides:
dump in class DefaultNode
equals
public final boolean equals(java.lang.Object obj)
- This function always returns true if it is being compared to a null
value, or if the other value is a NullNode object.
hashCode
public int hashCode()
- NullNodes all have the hashcode of zero.