vn
Class Sweeper.MemberNode

java.lang.Object
  extended by vn.Sweeper.MemberNode
Enclosing class:
Sweeper

private static class Sweeper.MemberNode
extends Object

Holds all crucial information about a member when it is encountered so it can be properly displayed in later processing. This is a simple information holder class.

See Also:
Sweeper.startMEMBER(Node), Sweeper.printVerbFramePairs()

Field Summary
 Node node
          The XML node.
 String verb
          The verb.
 String wn
          The WordNet sense.
 
Constructor Summary
Sweeper.MemberNode(String v, String w, Node n)
          Constructs a Sweeper.MemberNode object.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

verb

public String verb
The verb. This is extracted from the 'name' attribute of the MEMBER element.


wn

public String wn
The WordNet sense. This is extracted from the 'wn' attribute of the MEMBER element.


node

public Node node
The XML node. This is the MEMBER element.

Constructor Detail

Sweeper.MemberNode

public Sweeper.MemberNode(String v,
                          String w,
                          Node n)
Constructs a Sweeper.MemberNode object.

Parameters:
v - the verb
w - the WordNet sense
n - the XML node
See Also:
Sweeper.startMEMBER(Node)