Uses of Interface
edu.columbia.surge.Proc

Packages that use Proc
edu.columbia.surge This package contains all the interfaces of the API. 
edu.columbia.surge.hashImpl This package contains an implementation using hash tables. 
 

Uses of Proc in edu.columbia.surge
 

Methods in edu.columbia.surge that return Proc
 Proc ProcFactory.create()
          A factory method which creates a default instance of Proc.
 Proc ProcFactory.create(java.lang.String type, java.lang.String lex)
          A factory method which takes in the lexical entry and the process type as parameters to compute and return an instance of Proc.
 Proc ProcFactory.create(java.lang.String type, java.lang.String lex, java.lang.String effect_type, boolean agentive, boolean effective, java.lang.String mode, java.lang.String relation_type, java.lang.String polarity)
          A factory method to compute and return an instance of Proc that gives user the option to create an instance of Proc with all the most common and most frequently used properties.
 

Methods in edu.columbia.surge with parameters of type Proc
 void Clause.setProc(Proc process)
          A method to set the process of a clause.
 Clause ClauseFactory.create(Proc proc, Partic partic)
          A factory method to compute and return an instance of Clause class that fulfills the minimum requirement of a clause, which consists of a process and a participant.
 Clause ClauseFactory.create(Proc proc, Partic partic, java.lang.String tense, java.lang.String adverb, java.lang.String mood, java.lang.String polarity, java.lang.String complexity, boolean restrictiveness, Circum circum, PreMod preMod, java.lang.String[] scope, FDRef ref)
          A factory method to compute and return an instance of Clause class that gives user the option to create an instance of Clause with all the most common and frequently used properties.
 

Uses of Proc in edu.columbia.surge.hashImpl
 

Classes in edu.columbia.surge.hashImpl that implement Proc
 class ProcH
          The process of a FD.
 

Methods in edu.columbia.surge.hashImpl that return Proc
 Proc ProcFactoryH.create()
          A factory method which creates a default instance of ProcFactoryH.
 Proc ProcFactoryH.create(java.lang.String type, java.lang.String lex)
          A factory method which takes in the lexical entry and the process type as parameters to compute and return an instance of ProcH.
 Proc ProcFactoryH.create(java.lang.String type, java.lang.String lex, java.lang.String effect_type, boolean agentive, boolean effective, java.lang.String mode, java.lang.String relation_type, java.lang.String polarity)
          A factory method to compute and return an instance of ProcH that gives user the option to create an instance of ProcH with all the most common and most frequently used properties.
 

Methods in edu.columbia.surge.hashImpl with parameters of type Proc
 void ClauseH.setProc(Proc proc)
          A method to set the process of a clause.
 Clause ClauseFactoryH.create(Proc proc, Partic partic)
          A factory method to compute and return an instance of Clause class that fulfills the minimum requirement of a clause, which consists of a process and a participant.
 Clause ClauseFactoryH.create(Proc proc, Partic partic, java.lang.String tense, java.lang.String adverb, java.lang.String mood, java.lang.String polarity, java.lang.String complexity, boolean restrictiveness, Circum circum, PreMod preMod, java.lang.String[] scope, FDRef ref)
          A factory method to compute and return an instance of ClauseH class that gives user the option to create an instance of ClauseH with all the most common and frequently used properties.
 

Constructors in edu.columbia.surge.hashImpl with parameters of type Proc
ClauseH.ClauseH(Proc proc, Partic partic)
          Constructor to create an instance of Clause class that fulfills the minimum requirement of a clause, which consists of a process and a participant.
ClauseH.ClauseH(Proc proc, Partic partic, java.lang.String tense, java.lang.String adverb, java.lang.String mood, java.lang.String polarity, java.lang.String complex, boolean restrictiveness, Circum circum, PreMod preMod, java.lang.String[] scope, FDRef ref)
          Constructor to create an instance of ClauseH class that gives user the option to create an instance of ClauseH with all the most common and frequently used properties.