Codota Logo
AbstractModule.loadModuleInfo
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Connection c =
  • Codota IconDataSource dataSource;dataSource.getConnection()
  • Codota IconString url;DriverManager.getConnection(url)
  • Codota IconIdentityDatabaseUtil.getDBConnection()
  • Smart code suggestions by Codota
}
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

  • Start an intent from android
  • getSupportFragmentManager (FragmentActivity)
  • findViewById (Activity)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Point (java.awt)
    A point representing a location in (x, y) coordinate space, specified in integer precision.
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • URI (java.net)
    Represents a Uniform Resource Identifier (URI) reference. Aside from some minor deviations noted bel
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
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