Tabnine Logo
AbstractModule.loadModuleInfo
Code IndexAdd Tabnine to your IDE (free)

How to use
loadModuleInfo
method
in
org.jfree.base.modules.AbstractModule

Best Java code snippets using org.jfree.base.modules.AbstractModule.loadModuleInfo (Showing top 3 results out of 315)

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

/**
 * Loads the default module description from the file "module.properties". This file
 * must be in the same package as the implementing class.
 *
 * @throws ModuleInitializeException if an error occurs.
 */
protected void loadModuleInfo() throws ModuleInitializeException
{
 final InputStream in = ObjectUtilities.getResourceRelativeAsStream
     ("module.properties", getClass());
 if (in == null)
 {
  throw new ModuleInitializeException
    ("File 'module.properties' not found in module package.");
 }
 loadModuleInfo(in);
}
origin: jfree/jcommon

/**
 * Loads the default module description from the file "module.properties". This file
 * must be in the same package as the implementing class.
 *
 * @throws ModuleInitializeException if an error occurs.
 */
protected void loadModuleInfo() throws ModuleInitializeException
{
 final InputStream in = ObjectUtilities.getResourceRelativeAsStream
     ("module.properties", getClass());
 if (in == null)
 {
  throw new ModuleInitializeException
    ("File 'module.properties' not found in module package.");
 }
 loadModuleInfo(in);
}
origin: org.jfree/jcommon

/**
 * Loads the default module description from the file "module.properties". This file
 * must be in the same package as the implementing class.
 *
 * @throws ModuleInitializeException if an error occurs.
 */
protected void loadModuleInfo() throws ModuleInitializeException
{
 final InputStream in = ObjectUtilities.getResourceRelativeAsStream
     ("module.properties", getClass());
 if (in == null)
 {
  throw new ModuleInitializeException
    ("File 'module.properties' not found in module package.");
 }
 loadModuleInfo(in);
}
org.jfree.base.modulesAbstractModuleloadModuleInfo

Javadoc

Loads the default module description from the file "module.properties". This file must be in the same package as the implementing class.

Popular methods of AbstractModule

  • getDescription
    Returns the module description.
  • getMajorVersion
  • getMinorVersion
  • getModuleClass
  • getName
    Returns the name of this module.
  • getPatchLevel
  • getProducer
    Returns the producer of the module.
  • isNextLineValueLine
    Checks, whether the next line in the reader is a value line.
  • parseKey
    Parses an string to find the key section of the line. This section ends with an colon.
  • parseValue
    Parses the value section of the given line.
  • readExternalModule
    Reads an external module description. This describes either an optional or a required module.
  • readModuleInfo
    Reads the module definition header. This header contains information about the module itself.
  • readExternalModule,
  • readModuleInfo,
  • readValue,
  • setDescription,
  • setMajorVersion,
  • setMinorVersion,
  • setModuleClass,
  • setName,
  • setPatchLevel

Popular in Java

  • Reading from database using SQL prepared statement
  • getSystemService (Context)
  • onCreateOptionsMenu (Activity)
  • setScale (BigDecimal)
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Top PhpStorm plugins
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