Uses of Interface
project35.mda.model.FieldOperatorProvider

Packages that use FieldOperatorProvider
project35.mda.model This package describes Project35's native data structures that are used to manage an in-memory representation of an XML document. 
project35.soa.alerts The Project35 Alerts system is based on the concept of an Alert, which is a collection of matching criteria associated with an intent such as an error, a warning, a request for communication or a desire to post a bulletin. 
 

Uses of FieldOperatorProvider in project35.mda.model
 

Classes in project35.mda.model that implement FieldOperatorProvider
 class DefaultFieldOperatorProvider
          generates strings that represent the kinds of operators that would be appropriate for comparing values of a given primitive type such as string, int, double, etc.
 

Uses of FieldOperatorProvider in project35.soa.alerts
 

Fields in project35.soa.alerts declared as FieldOperatorProvider
protected  FieldOperatorProvider CriterionView.fieldOperatorProvider
           
 

Methods in project35.soa.alerts with parameters of type FieldOperatorProvider
 void MatchingCriteriaView.setFieldOperatorProvider(FieldOperatorProvider fieldOperatorProvider)
          sets the field operator provider, which provides the operators such as "=", "not contains", etc...
 

Constructors in project35.soa.alerts with parameters of type FieldOperatorProvider
EditFieldCriterionView(Project35FormContext project35FormContext, OntologyContext ontologyContext, RecordModel recordModel, FieldOperatorProvider fieldOperatorProvider)
          assumes there is at least one field name choice if the record model has no edit fields then the caller of this class should ensure it never gets used.
EditFieldCriterionView(Project35FormContext project35FormContext, OntologyContext ontologyContext, RecordModel recordModel, FieldOperatorProvider fieldOperatorProvider, java.util.ArrayList fieldsToExclude)
          public void removeRecordFieldChoice(String recordFieldChoice) { int foundIndex = excludedFields.indexOf(recordFieldChoice); if ( foundIndex == -1) { excludedFields.add(recordFieldChoice); } //end if () }
ListFieldCriterionView(Project35FormContext project35FormContext, RecordModel recordModel, FieldOperatorProvider fieldOperatorProvider)
          assumes there is at least one field name choice if the record model has no edit fields then the caller of this class should ensure it never gets used.