Uses of Interface
edu.columbia.surge.Partic

Packages that use Partic
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 Partic in edu.columbia.surge
 

Methods in edu.columbia.surge that return Partic
 Partic ParticFactory.create()
          A factory method which creates a default instance of Partic.
 Partic ParticFactory.create(java.lang.String particName, FD particBody)
          A factory method which creates an instance of Partic with the given name and the body of the participant.
 Partic ParticFactory.create(java.lang.String subjectName, FD subjectBody, java.lang.String objectName, FD objectBody)
          A factory method which creates an instance of Partic with the given names and the bodies of the participant.
 

Methods in edu.columbia.surge with parameters of type Partic
 void Clause.setPartic(Partic partic)
          A method to set the participants 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 Partic in edu.columbia.surge.hashImpl
 

Classes in edu.columbia.surge.hashImpl that implement Partic
 class ParticH
          The participant of a FD in a clause.
 

Methods in edu.columbia.surge.hashImpl that return Partic
 Partic ParticFactoryH.create()
          A factory method which creates a default instance of ParticH.
 Partic ParticFactoryH.create(java.lang.String particName, FD particBody)
          A factory method which creates an instance of ParticH with the given name and the body of the participant.
 Partic ParticFactoryH.create(java.lang.String subjectName, FD subjectBody, java.lang.String objectName, FD objectBody)
          A factory method which creates an instance of ParticH with the given names and the bodies of the participant.
 

Methods in edu.columbia.surge.hashImpl with parameters of type Partic
 void ClauseH.setPartic(Partic partic)
          A method to set the participants 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 Partic
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.