Tabnine Logo
Vocabulary.getLogRecord
Code IndexAdd Tabnine to your IDE (free)

How to use
getLogRecord
method
in
org.geotools.resources.i18n.Vocabulary

Best Java code snippets using org.geotools.resources.i18n.Vocabulary.getLogRecord (Showing top 2 results out of 315)

origin: org.geotools/gt2-widgets-swing

final LogRecord record = resources.getLogRecord(Level.FINER,
             VocabularyKeys.RECTANGLE_$4, areaBounds);
record.setSourceClassName (className);
origin: org.geotools/gt2-coverage

/**
 * Prepares a log record about an image to be loaded, and put the log record in a stack.
 * The record will be effectively logged only when image loading really beging.
 */
private void logLoading(final int key, final Object[] parameters) {
  final Locale locale = null;
  final LogRecord record = Vocabulary.getResources(locale).getLogRecord(Level.INFO, key);
  record.setSourceClassName(CoverageStack.class.getName());
  record.setSourceMethodName("evaluate");
  record.setParameters(parameters);
  if (readListener == null) {
    readListener = new Listeners();
    addIIOReadProgressListener(readListener);
  }
  readListener.record = record;
}
org.geotools.resources.i18nVocabularygetLogRecord

Popular methods of Vocabulary

  • format
    Gets a string for the given key are replace all occurence of "{0}", "{1}", with values of arg0, arg1
  • formatInternational
    Gets an international string for the given key. This method does not check for the key validity. If
  • getResources
    Returns resources in the given locale.
  • getString
  • getBundle
  • getLabel
  • getMenuLabel

Popular in Java

  • Creating JSON documents from java classes using gson
  • setScale (BigDecimal)
  • getSharedPreferences (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now