Uses of Class
edu.illinois.cs.cogcomp.lbj.coref.ir.examples.BIOExample

Packages that use BIOExample
edu.illinois.cs.cogcomp.lbj.coref.ir.examples   
edu.illinois.cs.cogcomp.lbj.coref.parsers   
 

Uses of BIOExample in edu.illinois.cs.cogcomp.lbj.coref.ir.examples
 

Fields in edu.illinois.cs.cogcomp.lbj.coref.ir.examples declared as BIOExample
 BIOExample BIOExample.m_prevEx
          The previous word's example.
 

Constructors in edu.illinois.cs.cogcomp.lbj.coref.ir.examples with parameters of type BIOExample
BIOExample(Doc doc, int wordN, char bioH, BIOExample prev)
          Constructs a BIO example for a given word with respect to its presence in a head.
BIOExample(Doc doc, int wordN, char bioH, char bioE, BIOExample prev)
          Constructs a BIO example for a given word with respect to its presence in a head and in an extent.
 

Uses of BIOExample in edu.illinois.cs.cogcomp.lbj.coref.parsers
 

Fields in edu.illinois.cs.cogcomp.lbj.coref.parsers with type parameters of type BIOExample
protected  java.util.List<BIOExample> BIOParser.m_examples
           
 

Methods in edu.illinois.cs.cogcomp.lbj.coref.parsers that return BIOExample
private  BIOExample BIOParser.getNextExample()
          Gets an example from the cache and prepares for the next example.
 BIOExample BIOParser.next()
          Gets the next example, or null if no more examples remain.
 

Methods in edu.illinois.cs.cogcomp.lbj.coref.parsers that return types with arguments of type BIOExample
 java.util.List<BIOExample> BIOParser.getBIOExamples(Doc d)