edu.stanford.nlp.trees
Class Dependency

java.lang.Object
  extended byedu.stanford.nlp.trees.Dependency

public class Dependency
extends Object

An individual dependency. Skeleton of a class. Needs some fleshing out.

Author:
Christopher Manning

Constructor Summary
Dependency(Label head, Label dependent)
           
Dependency(Label head, Label dependent, int index)
           
Dependency(String head, String dependent)
           
 
Method Summary
 boolean equals(Object o)
           
 int hashCode()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Dependency

public Dependency(String head,
                  String dependent)

Dependency

public Dependency(Label head,
                  Label dependent)

Dependency

public Dependency(Label head,
                  Label dependent,
                  int index)
Method Detail

hashCode

public int hashCode()

equals

public boolean equals(Object o)

toString

public String toString()


Stanford NLP Group