Tabnine Logo
BaseBoot.getConfiguration
Code IndexAdd Tabnine to your IDE (free)

How to use
getConfiguration
method
in
org.jfree.base.BaseBoot

Best Java code snippets using org.jfree.base.BaseBoot.getConfiguration (Showing top 12 results out of 315)

origin: org.jfree/com.springsource.org.jfree

/**
 * Sets the log target.
 *
 * @param logTarget  the new log target.
 */
public static void setLogTarget(final String logTarget)
{
  BaseBoot.getConfiguration().setConfigProperty (LOGTARGET, logTarget);
}
origin: jfree/jcommon

/**
 * Sets the log target.
 *
 * @param logTarget  the new log target.
 */
public static void setLogTarget(final String logTarget)
{
  BaseBoot.getConfiguration().setConfigProperty (LOGTARGET, logTarget);
}
origin: org.jfree/jcommon

/**
 * Sets the log target.
 *
 * @param logTarget  the new log target.
 */
public static void setLogTarget(final String logTarget)
{
  BaseBoot.getConfiguration().setConfigProperty (LOGTARGET, logTarget);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Sets the flag that disables logging.
 * <p>
 * To switch off logging globally, you can use the following code:
 * <p>
 * <code>ReportConfiguration.getGlobalConfig().setDisableLogging(true);</code>
 *
 * @param disableLogging  the flag.
 */
public static void setDisableLogging(final boolean disableLogging)
{
 BaseBoot.getConfiguration().setConfigProperty
     (DISABLE_LOGGING, String.valueOf(disableLogging));
}
origin: jfree/jcommon

/**
 * Sets the flag that disables logging.
 * <p>
 * To switch off logging globally, you can use the following code:
 * <p>
 * <code>ReportConfiguration.getGlobalConfig().setDisableLogging(true);</code>
 *
 * @param disableLogging  the flag.
 */
public static void setDisableLogging(final boolean disableLogging)
{
 BaseBoot.getConfiguration().setConfigProperty
     (DISABLE_LOGGING, String.valueOf(disableLogging));
}
origin: org.jfree/jcommon

/**
 * Sets the flag that disables logging.
 * <p>
 * To switch off logging globally, you can use the following code:
 * <p>
 * <code>ReportConfiguration.getGlobalConfig().setDisableLogging(true);</code>
 *
 * @param disableLogging  the flag.
 */
public static void setDisableLogging(final boolean disableLogging)
{
 BaseBoot.getConfiguration().setConfigProperty
     (DISABLE_LOGGING, String.valueOf(disableLogging));
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Sets the log level, which is read from the global report configuration at
 * the point that the classloader loads the {@link org.jfree.util.Log} class.
 * <p>
 * Valid log levels are:
 *
 * <ul>
 * <li><code>"Error"</code> - error messages;</li>
 * <li><code>"Warn"</code> - warning messages;</li>
 * <li><code>"Info"</code> - information messages;</li>
 * <li><code>"Debug"</code> - debug messages;</li>
 * </ul>
 *
 * Notes:
 * <ul>
 * <li>the setting is not case sensitive.</li>
 * <li>changing the log level after the {@link org.jfree.util.Log} class has been
 * loaded will have no effect.</li>
 * <li>to turn of logging altogether, use the {@link #setDisableLogging} method.</li>
 * </ul>
 *
 * @param level  the new log level.
 */
public static void setLogLevel(final String level)
{
 BaseBoot.getConfiguration().setConfigProperty(LOGLEVEL, level);
}
origin: jfree/jcommon

/**
 * Sets the log level, which is read from the global report configuration at
 * the point that the classloader loads the {@link org.jfree.util.Log} class.
 * <p>
 * Valid log levels are:
 *
 * <ul>
 * <li><code>"Error"</code> - error messages;</li>
 * <li><code>"Warn"</code> - warning messages;</li>
 * <li><code>"Info"</code> - information messages;</li>
 * <li><code>"Debug"</code> - debug messages;</li>
 * </ul>
 *
 * Notes:
 * <ul>
 * <li>the setting is not case sensitive.</li>
 * <li>changing the log level after the {@link org.jfree.util.Log} class has been
 * loaded will have no effect.</li>
 * <li>to turn of logging altogether, use the {@link #setDisableLogging} method.</li>
 * </ul>
 *
 * @param level  the new log level.
 */
public static void setLogLevel(final String level)
{
 BaseBoot.getConfiguration().setConfigProperty(LOGLEVEL, level);
}
origin: org.jfree/jcommon

/**
 * Sets the log level, which is read from the global report configuration at
 * the point that the classloader loads the {@link org.jfree.util.Log} class.
 * <p>
 * Valid log levels are:
 *
 * <ul>
 * <li><code>"Error"</code> - error messages;</li>
 * <li><code>"Warn"</code> - warning messages;</li>
 * <li><code>"Info"</code> - information messages;</li>
 * <li><code>"Debug"</code> - debug messages;</li>
 * </ul>
 *
 * Notes:
 * <ul>
 * <li>the setting is not case sensitive.</li>
 * <li>changing the log level after the {@link org.jfree.util.Log} class has been
 * loaded will have no effect.</li>
 * <li>to turn of logging altogether, use the {@link #setDisableLogging} method.</li>
 * </ul>
 *
 * @param level  the new log level.
 */
public static void setLogLevel(final String level)
{
 BaseBoot.getConfiguration().setConfigProperty(LOGLEVEL, level);
}
origin: jfree/jcommon

/**
 * Performs the boot process.
 */
protected void performBoot() {
  // configure the classloader from the properties-file.
  ObjectUtilities.setClassLoaderSource
      (getConfiguration().getConfigProperty("org.jfree.ClassLoader"));
  getPackageManager().addModule(DefaultLogModule.class.getName());
  getPackageManager().load("org.jfree.jcommon.modules.");
  getPackageManager().initializeModules();
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Performs the boot process.
 */
protected void performBoot() {
  // configure the classloader from the properties-file.
  ObjectUtilities.setClassLoaderSource
      (getConfiguration().getConfigProperty("org.jfree.ClassLoader"));
  getPackageManager().addModule(DefaultLogModule.class.getName());
  getPackageManager().load("org.jfree.jcommon.modules.");
  getPackageManager().initializeModules();
}
origin: org.jfree/jcommon

/**
 * Performs the boot process.
 */
protected void performBoot() {
  // configure the classloader from the properties-file.
  ObjectUtilities.setClassLoaderSource
      (getConfiguration().getConfigProperty("org.jfree.ClassLoader"));
  getPackageManager().addModule(DefaultLogModule.class.getName());
  getPackageManager().load("org.jfree.jcommon.modules.");
  getPackageManager().initializeModules();
}
org.jfree.baseBaseBootgetConfiguration

Javadoc

Returns the global configuration as modifiable configuration reference.

Popular methods of BaseBoot

  • <init>
    Default constructor (private).
  • createDefaultHierarchicalConfiguration
  • getInstance
    Returns the boot instance.
  • getPackageManager

Popular in Java

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • putExtra (Intent)
  • onRequestPermissionsResult (Fragment)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • JOptionPane (javax.swing)
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top plugins for Android Studio
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