Package org.apache.ctakes.core.fsm.token

Examples of org.apache.ctakes.core.fsm.token.SymbolToken


   * Called to check if the conditional meets the criteria defined by this
   * state.
   */
  public boolean satisfiedBy(Object conditional) {
    if (conditional instanceof SymbolToken) {
      SymbolToken t = (SymbolToken) conditional;
      if (t.getChar() == iv_symbolChar) {
        return true;
      }
    }

    return false;
View Full Code Here

TOP

Related Classes of org.apache.ctakes.core.fsm.token.SymbolToken

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.