Uses of Class
ipipan.spejd.entities.Interpretation

Packages that use Interpretation
ipipan.spejd.actions Provides classes representing actions (predicates) that can be executed (evaluated) upon finding a match. 
ipipan.spejd.entities Provides classes representing syntactic entities, for example words or syntactic groups. 
 

Uses of Interpretation in ipipan.spejd.actions
 

Methods in ipipan.spejd.actions that return types with arguments of type Interpretation
 java.util.Set<Interpretation> WordActionArg.createInterpretations(Match matcher)
           
 

Uses of Interpretation in ipipan.spejd.entities
 

Methods in ipipan.spejd.entities that return Interpretation
 Interpretation[] Entity.getInterpretationArray()
          Get the set of interpretations.
 Interpretation[] Segment.getInterpretationArray()
           
 

Methods in ipipan.spejd.entities that return types with arguments of type Interpretation
 java.util.Set<Interpretation> Entity.getInterpretations()
          Get the set of interpretations.
 java.util.Set<Interpretation> Segment.getInterpretations()
           
 

Methods in ipipan.spejd.entities with parameters of type Interpretation
 int Interpretation.compareTo(Interpretation i)
           
 

Constructors in ipipan.spejd.entities with parameters of type Interpretation
Interpretation(Interpretation interp, java.lang.String modifier, Config conf)
          Create an interpretation by modyfying attributes of an existing one.
Interpretation(Interpretation interp, java.lang.String modifier, java.lang.String base, Config conf)
          Create an interpretation by modifying attributes of an existing one.
Segment(java.lang.String id, java.lang.String orth, Interpretation[] interp, Config conf)
           
Word(Interpretation[] interp, Entity[] content, Config conf)