Package games.stendhal.common.parser

Examples of games.stendhal.common.parser.ConvCtxForMatchingSource


    } else if (matcher == null) {
      // simple parsing for matching
      sentence = ConversationParser.parseAsMatchingSource(text);
    } else {
      // parse with the given matcher object
      sentence = ConversationParser.parse(text, new ConvCtxForMatchingSource(), matcher);
    }

    tfParsedSentence.setText(sentence.toString());

    boolean matches = sentence.matchesFull(matchSentence);
View Full Code Here

TOP

Related Classes of games.stendhal.common.parser.ConvCtxForMatchingSource

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.