Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.tripi.asp
Class NullNode  view NullNode download NullNode.java

java.lang.Object
  extended bycom.tripi.asp.DefaultNode
      extended bycom.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.
 
Methods inherited from class com.tripi.asp.DefaultNode
execute, prepare
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NullNode

public NullNode()
Constructor

Method Detail

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.