Codota Logo
UIMAFramework._getLogger
Code IndexAdd Codota to your IDE (free)

How to use
_getLogger
method
in
org.apache.uima.UIMAFramework

Best Java code snippets using org.apache.uima.UIMAFramework._getLogger (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
SimpleDateFormat s =
  • Codota IconString pattern;new SimpleDateFormat(pattern)
  • Codota IconString template;Locale locale;new SimpleDateFormat(template, locale)
  • Codota Iconnew SimpleDateFormat()
  • Smart code suggestions by Codota
}
origin: apache/uima-uimaj

/**
 * Gets the {@link org.apache.uima.util.Logger} used by the UIMA framework. An application won't
 * generally write to this logger, although nothing is stopping it from doing so.
 * <p>
 * In the UIMA SDK, the logger is implemented using the Java 1.4 logger as a back end. If you want
 * to configure the logger, for example to specify the location of the log file and the logging
 * level, you should use the standard Java 1.4 logger properties or the java.util.logging APIs.
 * See the section "Specifying the Logging Configuration" in the Annotator and Analysis Engine
 * Developer's Guide chapter of the UIMA documentation for more information.
 * 
 * @return the default Logger used by UIMA components
 */
public static Logger getLogger() {
 return getInstance()._getLogger();
}
origin: apache/uima-uimaj

/**
 * Gets the {@link org.apache.uima.util.Logger} used by a particular Class, for example an
 * Annotator. An application won't generally write to this logger, although nothing is stopping it
 * from doing so.
 * <p>
 * In the UIMA SDK, the logger is implemented using the Java 1.4 logger as a back end. If you want
 * to configure the logger, for example to specify the location of the log file and the logging
 * level, you should use the standard Java 1.4 logger properties or the java.util.logging APIs.
 * See the section "Specifying the Logging Configuration" in the Annotator and Analysis Engine
 * Developer's Guide chapter of the UIMA documentation for more information.
 * 
 * @param component
 *          the Class for a component, for example an Annotator or CAS Consumer
 * 
 * @return the Logger used by the specified component class
 */
public static Logger getLogger(Class<?> component) {
 return getInstance()._getLogger(component);
}
org.apache.uimaUIMAFramework_getLogger

Javadoc

To be implemented by subclasses; this should return a reference to the default UIMA Logger used by this implementation.

Popular methods of UIMAFramework

  • getXMLParser
  • produceAnalysisEngine
  • newDefaultResourceManager
  • getLogger
  • getResourceSpecifierFactory
  • newConfigurationManager
  • newUimaContext
  • produceCollectionReader
  • produceCollectionProcessingEngine
  • getDefaultPerformanceTuningProperties
  • produceCasConsumer
  • getVersionString
  • produceCasConsumer,
  • getVersionString,
  • produceResource,
  • _getBuildRevision,
  • _getDefaultPerformanceTuningProperties,
  • _getMajorVersion,
  • _getMinorVersion,
  • _getResourceFactory,
  • _getResourceSpecifierFactory

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • onCreateOptionsMenu (Activity)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • LinkedHashMap (java.util)
    Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
  • ResourceBundle (java.util)
    Resource bundles contain locale-specific objects. When your program needs a locale-specific resource
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • Pattern (java.util.regex)
    A compiled representation of a regular expression. A regular expression, specified as a string, must
  • JLabel (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now