Package grammar.model.nouns

Examples of grammar.model.nouns.NounForm


 
  public void endElement(String uri, String localName, String qName) {
    String str = getParsedString();
    ParseMode mode = getParseMode();
    if (mode.equals(ParseMode.NAME)) {
      forms.add(new NounForm(
        getLanguage(), affectedMultiplicity, affectedNounClasses, str));
      affectedMultiplicity = Multiplicity.SINGULAR; // reset to default
      affectedNounClasses = new ArrayList<NounClass>();
    }
    else if (mode.equals(ParseMode.NOUN_CLASS)) {
View Full Code Here

TOP

Related Classes of grammar.model.nouns.NounForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.