Uses of Interface
gate.FeatureMap

Packages that use FeatureMap
gate  
gate.annotation   
gate.config   
gate.corpora   
gate.creole   
gate.creole.gazetteer   
gate.creole.tokeniser   
gate.db   
gate.email   
gate.gui   
gate.html   
gate.jape   
gate.util   
gate.xml   
 

Uses of FeatureMap in gate
 

Fields in gate declared as FeatureMap
private  FeatureMap DocumentFormat.features
          The features of this resource
 

Methods in gate that return FeatureMap
 FeatureMap DocumentFormat.getFeatures()
          Get the feature set
static FeatureMap Factory.newFeatureMap()
          Create a new FeatureMap.
 

Methods in gate with parameters of type FeatureMap
static boolean Gate.getHiddenAttribute(FeatureMap fm)
          Returns the value for the HIDDEN attribute of a feature map
static void Gate.setHiddenAttribute(FeatureMap fm, boolean hidden)
          Sets the value for the HIDDEN attribute of a feature map
static boolean Gate.getApplicationAttribute(FeatureMap fm)
          Returns the value for the APPLICATION attribute of a feature map
static void Gate.setApplicationAttribute(FeatureMap fm, boolean isApplication)
          Sets the value for the APPLICATION attribute of a feature map
static String Gate.getName(FeatureMap fm)
          Gets the NAME attribute feature map.
static void Gate.setName(FeatureMap fm, String name)
          Sets the NAME attribute in a feature map.
 void DocumentFormat.setFeatures(FeatureMap features)
          Set the features map
static Resource Factory.createResource(String resourceClassName, FeatureMap parameterValues, Map listeners)
          Create an instance of a resource, and return it.
static Resource Factory.createResource(String resourceClassName, FeatureMap parameterValues, FeatureMap features)
          Create an instance of a resource, and return it.
static Resource Factory.createResource(String resourceClassName, FeatureMap parameterValues, FeatureMap features, Map listeners)
          Create an instance of a resource, and return it.
static Resource Factory.createResource(String resourceClassName, FeatureMap parameterValues)
          Create an instance of a resource, and return it.
static void Factory.setResourceInittimeParameters(Resource resource, FeatureMap parameterValues)
          For each paramter, set the appropriate property on the resource using bean-style reflection.
static void Factory.setResourceRuntimeParameters(Resource resource, FeatureMap parameterValues)
          For each paramter, set the appropriate property on the resource using bean-style reflection.
protected static void Factory.setResourceParameters(Resource resource, FeatureMap parameterValues)
          For each paramter, set the appropriate property on the resource using bean-style reflection.
 Integer AnnotationSet.add(Node start, Node end, String type, FeatureMap features)
          Create and add an annotation with pre-existing nodes, and return its id
 void AnnotationSet.add(Integer id, Long start, Long end, String type, FeatureMap features)
          Create and add an annotation with a pre-existing ID
 Integer AnnotationSet.add(Long start, Long end, String type, FeatureMap features)
          Create and add an annotation and return its id
 AnnotationSet AnnotationSet.get(String type, FeatureMap constraints)
          Select annotations by type and features
 AnnotationSet AnnotationSet.get(String type, FeatureMap constraints, Long offset)
          Select annotations by type, features and offset
 boolean FeatureMap.subsumes(FeatureMap aFeatureMap)
          Test if this featureMap object is included in aFeatureMap
 

Uses of FeatureMap in gate.annotation
 

Fields in gate.annotation declared as FeatureMap
(package private)  FeatureMap AnnotationImpl.features
          The features of the annotation
protected  FeatureMap TestAnnotation.emptyFeatureMap
          An empty feature map
 

Methods in gate.annotation that return FeatureMap
 FeatureMap AnnotationImpl.getFeatures()
          The features, or content of this arc (corresponds to TIPSTER "attributes", and to LDC "label", which is the simplest case).
 

Methods in gate.annotation with parameters of type FeatureMap
 AnnotationSet AnnotationSetImpl.get(String type, FeatureMap constraints)
          Select annotations by type and features
 AnnotationSet AnnotationSetImpl.get(String type, FeatureMap constraints, Long offset)
          Select annotations by type, features and offset
 Integer AnnotationSetImpl.add(Node start, Node end, String type, FeatureMap features)
          Create and add an annotation with pre-existing nodes, and return its id
 Integer AnnotationSetImpl.add(Long start, Long end, String type, FeatureMap features)
          Create and add an annotation and return its id
 void AnnotationSetImpl.add(Integer id, Long start, Long end, String type, FeatureMap features)
          Create and add an annotation from database read data In this case the id is already known being previously fetched from the database
 void AnnotationImpl.setFeatures(FeatureMap features)
          Set the feature set
 

Constructors in gate.annotation with parameters of type FeatureMap
AnnotationImpl(Integer id, Node start, Node end, String type, FeatureMap features)
          Constructor.
 

Uses of FeatureMap in gate.config
 

Fields in gate.config declared as FeatureMap
private  FeatureMap ConfigXmlHandler.currentAttributeMap
          A feature map representation of the current element's attribute list
 

Methods in gate.config that return FeatureMap
protected  FeatureMap ConfigXmlHandler.attributeListToParameterList()
          Utility method to convert the current SAX attribute list to a FeatureMap
 

Uses of FeatureMap in gate.corpora
 

Fields in gate.corpora declared as FeatureMap
protected  FeatureMap CorpusImpl.features
          The features associated with this corpus.
protected  FeatureMap DocumentImpl.features
          The features associated with this document.
 

Methods in gate.corpora that return FeatureMap
 FeatureMap CorpusImpl.getFeatures()
          Get the features associated with this corpus.
 FeatureMap DocumentImpl.getFeatures()
          Get the features associated with this document.
 

Methods in gate.corpora with parameters of type FeatureMap
 void CorpusImpl.setFeatures(FeatureMap features)
          Set the feature set
private  String DocumentImpl.featuresToXml(FeatureMap aFeatureMap)
          This method saves a FeatureMap as XML elements.
 void DocumentImpl.setFeatures(FeatureMap features)
          Set the feature set
 

Uses of FeatureMap in gate.creole
 

Fields in gate.creole declared as FeatureMap
protected  FeatureMap AbstractVisualResource.features
           
private  FeatureMap CreoleXmlHandler.viewFeatures
          The features (attributes) of VIEW elements
protected  FeatureMap SerialController.features
          The feature set
 

Methods in gate.creole that return FeatureMap
 FeatureMap AbstractVisualResource.getFeatures()
          Accessor for features.
 FeatureMap ParameterList.getRuntimeDefaults()
          Get default runtime parameter value set.
 FeatureMap ParameterList.getInitimeDefaults()
          Get default initime parameter value set.
 FeatureMap ParameterList.getDefaults(List parameters)
          Get default parameter value set.
 FeatureMap SerialController.getFeatures()
          Get the feature set
 

Methods in gate.creole with parameters of type FeatureMap
 void AbstractVisualResource.setFeatures(FeatureMap features)
          Mutatot for features
 void ResourceData.addView(FeatureMap viewFeatures)
          Add a view (a feature map minimally defining the view's TYPE and TITLE).
 void SerialController.setRuntimeParameters(FeatureMap parameters)
           
 void SerialController.setFeatures(FeatureMap features)
          Set the feature set
 

Uses of FeatureMap in gate.creole.gazetteer
 

Fields in gate.creole.gazetteer declared as FeatureMap
protected  FeatureMap DefaultGazetteer.features
           
 

Methods in gate.creole.gazetteer that return FeatureMap
 FeatureMap DefaultGazetteer.getFeatures()
           
 

Methods in gate.creole.gazetteer with parameters of type FeatureMap
 void DefaultGazetteer.setFeatures(FeatureMap features)
           
 

Uses of FeatureMap in gate.creole.tokeniser
 

Fields in gate.creole.tokeniser declared as FeatureMap
protected  FeatureMap DefaultTokeniser.features
           
 

Methods in gate.creole.tokeniser that return FeatureMap
 FeatureMap DefaultTokeniser.getFeatures()
           
 

Methods in gate.creole.tokeniser with parameters of type FeatureMap
 void DefaultTokeniser.setFeatures(FeatureMap features)
           
 

Uses of FeatureMap in gate.db
 

Fields in gate.db declared as FeatureMap
protected  FeatureMap Database.features
           
 

Methods in gate.db that return FeatureMap
 FeatureMap Database.getFeatures()
          Gets the features of this datastore.
 FeatureMap Database.readFeaturesOf(long ownerId, Connection con)
          This method reads (from the Gate2 database) the features of the object bearing the given ID.
 

Methods in gate.db with parameters of type FeatureMap
 void Database.setFeatures(FeatureMap features)
          Sets the features of this datastore.
 void Database.writeFeaturesOf(long ownerId, FeatureMap featuresToWrite, Connection con)
          This method writes the given FeatureMap as features belonging to the object with the given offset.
 

Constructors in gate.db with parameters of type FeatureMap
CorpusWrapper(DataStore db, String name, FeatureMap features)
          Creates a persistent corpus with the given name and features.
 

Uses of FeatureMap in gate.email
 

Methods in gate.email with parameters of type FeatureMap
private  void EmailDocumentHandler.createAnnotation(String anAnnotationName, long anAnnotationStart, long anAnnotationEnd, FeatureMap aFeatureMap)
          This method creates a gate annotation given its name, start, end and feature map.
 

Uses of FeatureMap in gate.gui
 

Fields in gate.gui declared as FeatureMap
(package private)  FeatureMap AnnotationEditDialog.featureMap
           
(package private)  FeatureMap AnnotationEditDialog.responseMap
          This field is returned when a featureMap was editted or created
(package private)  FeatureMap FeaturesEditor.features
           
private  FeatureMap CustomAnnotationEditDialog.cancelAnnotFeatureMap
           
private  FeatureMap CustomAnnotationEditDialog.MyCustomFeatureBearer.features
           
 

Methods in gate.gui that return FeatureMap
 FeatureMap AnnotationEditDialog.show(FeatureMap aFeatMap, AnnotationSchema anAnnotSchema)
          This method displays the AnnotationEditDialog in edit mode
 FeatureMap AnnotationEditDialog.show(AnnotationSchema anAnnotSchema)
          This method displays the AnnotationEditDialog in creating mode
 FeatureMap CustomAnnotationEditDialog.getFeatures()
          Returns the features edited with this tool
 FeatureMap CustomAnnotationEditDialog.MyCustomFeatureBearer.getFeatures()
           
 

Methods in gate.gui with parameters of type FeatureMap
 FeatureMap AnnotationEditDialog.show(FeatureMap aFeatMap, AnnotationSchema anAnnotSchema)
          This method displays the AnnotationEditDialog in edit mode
 void CustomAnnotationEditDialog.MyCustomFeatureBearer.setFeatures(FeatureMap aFeatureMap)
           
 

Uses of FeatureMap in gate.html
 

Fields in gate.html declared as FeatureMap
private  FeatureMap CustomObject.fm
           
 

Methods in gate.html that return FeatureMap
 FeatureMap CustomObject.getFM()
           
 

Methods in gate.html with parameters of type FeatureMap
 void CustomObject.setFM(FeatureMap aFm)
           
 

Constructors in gate.html with parameters of type FeatureMap
CustomObject(String anElemName, FeatureMap aFm, Long aStart, Long anEnd)
           
 

Uses of FeatureMap in gate.jape
 

Fields in gate.jape declared as FeatureMap
private  FeatureMap Constraint.attrs1
          The attributes that must be present on the matched annotation.
private  FeatureMap Batch.features
          Path to the resources tree
 

Methods in gate.jape that return FeatureMap
 FeatureMap Constraint.getAttributeSeq()
          Get the attributes that must be present on the matched annotation.
 FeatureMap Batch.getFeatures()
           
 

Methods in gate.jape with parameters of type FeatureMap
 void Batch.setFeatures(FeatureMap newFeatures)
           
 

Constructors in gate.jape with parameters of type FeatureMap
Constraint(String annotType, FeatureMap attrs)
          Construction from annot type and attribute sequence
 

Uses of FeatureMap in gate.util
 

Classes in gate.util that implement FeatureMap
 class SimpleFeatureMapImpl
          Simple case of features.
 

Fields in gate.util declared as FeatureMap
protected  FeatureMap AbstractFeatureBearer.features
          The feature set
private  FeatureMap DumbTokeniser.features
           
 

Methods in gate.util that return FeatureMap
 FeatureMap AbstractFeatureBearer.getFeatures()
          Get the feature set
 FeatureMap DumbTokeniser.getFeatures()
           
 FeatureMap FeatureBearer.getFeatures()
          Get the feature set
 

Methods in gate.util with parameters of type FeatureMap
 void AbstractFeatureBearer.setFeatures(FeatureMap features)
          Set the feature set
 boolean SimpleFeatureMapImpl.subsumes(FeatureMap aFeatureMap)
          Test if this featureMap object is included in aFeatureMap
 void DumbTokeniser.setFeatures(FeatureMap features)
           
 void FeatureBearer.setFeatures(FeatureMap features)
          Set the feature set
 

Uses of FeatureMap in gate.xml
 

Fields in gate.xml declared as FeatureMap
private  FeatureMap CustomObject.fm
           
private  FeatureMap GateFormatXmlDocumentHandler.currentFeatureMap
           
private  FeatureMap AnnotationObject.fm
           
 

Methods in gate.xml that return FeatureMap
 FeatureMap CustomObject.getFM()
           
 FeatureMap AnnotationObject.getFM()
           
 

Methods in gate.xml with parameters of type FeatureMap
 void CustomObject.setFM(FeatureMap aFm)
           
 void AnnotationObject.setFM(FeatureMap aFm)
           
 

Constructors in gate.xml with parameters of type FeatureMap
CustomObject(String anElemName, FeatureMap aFm, Long aStart, Long anEnd)