Tabnine Logo
PackageManager.getPackageConfiguration
Code IndexAdd Tabnine to your IDE (free)

How to use
getPackageConfiguration
method
in
org.jfree.base.modules.PackageManager

Best Java code snippets using org.jfree.base.modules.PackageManager.getPackageConfiguration (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew ArrayList()
  • Codota Iconnew LinkedList()
  • Smart code suggestions by Tabnine
}
origin: jfree/jcommon

/**
 * Configures the module by loading the configuration properties and
 * adding them to the package configuration.
 *
 * @param subSystem  the subsystem.
 */
public void configure(final SubSystem subSystem)
{
 final InputStream in = ObjectUtilities.getResourceRelativeAsStream
     ("configuration.properties", getClass());
 if (in == null)
 {
  return;
 }
 try
 {
  subSystem.getPackageManager().getPackageConfiguration().load(in);
 }
 finally
 {
  try
  {
   in.close();
  }
  catch (IOException e)
  {
   // can be ignored ...
  }
 }
}
origin: org.jfree/jcommon

/**
 * Configures the module by loading the configuration properties and
 * adding them to the package configuration.
 *
 * @param subSystem  the subsystem.
 */
public void configure(final SubSystem subSystem)
{
 final InputStream in = ObjectUtilities.getResourceRelativeAsStream
     ("configuration.properties", getClass());
 if (in == null)
 {
  return;
 }
 try
 {
  subSystem.getPackageManager().getPackageConfiguration().load(in);
 }
 finally
 {
  try
  {
   in.close();
  }
  catch (IOException e)
  {
   // can be ignored ...
  }
 }
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Configures the module by loading the configuration properties and
 * adding them to the package configuration.
 * 
 * @param subSystem  the subsystem.
 */
public void configure(final SubSystem subSystem)
{
 final InputStream in = ObjectUtilities.getResourceRelativeAsStream
     ("configuration.properties", getClass());
 if (in == null)
 {
  return;
 }
 try
 {
  subSystem.getPackageManager().getPackageConfiguration().load(in);
 }
 finally
 {
  try
  {
   in.close();
  }
  catch (IOException e)
  {
   // can be ignored ...
  }
 }
}
origin: org.jfree/com.springsource.org.jfree

globalConfig.insertConfiguration(rootProperty);
globalConfig.insertConfiguration(
    getPackageManager().getPackageConfiguration());
origin: org.jfree/jcommon

globalConfig.insertConfiguration(rootProperty);
globalConfig.insertConfiguration(
    getPackageManager().getPackageConfiguration());
origin: jfree/jcommon

globalConfig.insertConfiguration(rootProperty);
globalConfig.insertConfiguration(
    getPackageManager().getPackageConfiguration());
org.jfree.base.modulesPackageManagergetPackageConfiguration

Javadoc

Returns the default package configuration. Private report configuration instances may be inserted here. These inserted configuration can never override the settings from this package configuration.

Popular methods of PackageManager

  • <init>
    Creates a new package manager.
  • acceptVersion
    Checks, whether the given module meets the requirements defined in the module information.
  • addModule
    Adds a module to the package manager. Once all modules are added, you have to call initializeModules
  • containsModule
    Checks, whether the given module is already loaded in either the given tempModules list or the globa
  • createInstance
    Creates a package manager instance.
  • dropFailedModule
    A utility method that collects all failed modules. Such an module caused an error while being loaded
  • getAllModules
    Returns an array of the currently active modules. The module definition returned contain all known m
  • initializeModules
    Initializes all previously uninitialized modules. Once a module is initialized, it is not re-initial
  • isModuleAvailable
    Checks, whether a certain module is available.
  • load
    Loads all modules mentioned in the report configuration starting with the given prefix. This method
  • loadModule
    Tries to load a given module and all dependent modules. If the dependency check fails for that modul
  • loadModule

Popular in Java

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • findViewById (Activity)
  • requestLocationUpdates (LocationManager)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Permission (java.security)
    Legacy security code; do not use.
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • JLabel (javax.swing)
  • Option (scala)
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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