Uses of Interface
sg.edu.nus.comp.nlp.ims.feature.IFeature

Packages that use IFeature
sg.edu.nus.comp.nlp.ims.feature Package related to features used in WSD. 
sg.edu.nus.comp.nlp.ims.instance Package related to wsd instance. 
sg.edu.nus.comp.nlp.ims.lexelt Package related to one instances set of the same lexelt. 
 

Uses of IFeature in sg.edu.nus.comp.nlp.ims.feature
 

Classes in sg.edu.nus.comp.nlp.ims.feature that implement IFeature
 class ABinaryFeature
          feature type with binary value.
 class AListFeature
          feature type with list value.
 class ANumericFeature
          feature type with numeral value.
 class CCollocation
          collocation feature.
 class CDoubleFeature
          feature with a double figure as value.
 class CPOSFeature
          pos feature.
 class CSurroundingWord
          surrounding word feature.
 

Fields in sg.edu.nus.comp.nlp.ims.feature declared as IFeature
protected  IFeature CSurroundingWordExtractor.m_CurrentFeature
           
protected  IFeature CPOSFeatureExtractor.m_CurrentFeature
           
protected  IFeature CFeatureExtractorCombination.m_CurrentFeature
           
protected  IFeature CCollocationExtractor.m_CurrentFeature
           
 

Methods in sg.edu.nus.comp.nlp.ims.feature that return IFeature
protected  IFeature CPOSFeatureExtractor.getNext()
          get the next feature of current instance
protected  IFeature CCollocationExtractor.getNext()
          get the next feature of current instance
 IFeature IFeatureExtractor.next()
          get the next feature
 IFeature CSurroundingWordExtractor.next()
           
 IFeature CPOSFeatureExtractor.next()
           
 IFeature CFeatureExtractorCombination.next()
           
 IFeature CCollocationExtractor.next()
           
 

Uses of IFeature in sg.edu.nus.comp.nlp.ims.instance
 

Fields in sg.edu.nus.comp.nlp.ims.instance with type parameters of type IFeature
protected  java.util.ArrayList<IFeature> CInstance.m_Features
           
 

Methods in sg.edu.nus.comp.nlp.ims.instance that return IFeature
 IFeature IInstance.getFeature(int p_Index)
          get the feature of index p_Index
 IFeature CInstance.getFeature(int p_Index)
           
 IFeature IInstance.getFeature(java.lang.String p_Name)
          get the feature of this instance with p_Name
 IFeature CInstance.getFeature(java.lang.String p_Key)
           
 

Methods in sg.edu.nus.comp.nlp.ims.instance with parameters of type IFeature
 boolean IInstance.addFeature(IFeature p_Feature)
          add one feature to the instance.
 boolean CInstance.addFeature(IFeature p_Feature)
           
 

Uses of IFeature in sg.edu.nus.comp.nlp.ims.lexelt
 

Fields in sg.edu.nus.comp.nlp.ims.lexelt with type parameters of type IFeature
protected  java.util.ArrayList<java.lang.Class<? extends IFeature>> CStatistic.m_TypeEnum