예제 #1
0
 public bool HasFeature(MorphoFeatureSpecification.MorphoFeatureType feat)
 {
     return fSpec.ContainsKey(feat);
 }
예제 #2
0
 public string GetValue(MorphoFeatureSpecification.MorphoFeatureType feat)
 {
     return HasFeature(feat) ? fSpec[feat] : "";
 }
예제 #3
0
 public void AddFeature(MorphoFeatureSpecification.MorphoFeatureType feat, string val)
 {
     fSpec.Add(feat, val);
 }