Package org.apache.uima.util.impl

Examples of org.apache.uima.util.impl.JSR47Logger_impl


  public void info(Object paramObject) {
    if (context != null) {
      Logger logger = context.getLogger();
      if (logger != null) {
        if (context.getLogger() instanceof JSR47Logger_impl) {
          JSR47Logger_impl impl = (JSR47Logger_impl) context.getLogger();
        }
        context.getLogger()
                .log(getClass().getName(), Level.INFO, String.valueOf(paramObject), null);
      }
    }
View Full Code Here

TOP

Related Classes of org.apache.uima.util.impl.JSR47Logger_impl

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.