Tabnine Logo
DefaultModuleInfo
Code IndexAdd Tabnine to your IDE (free)

How to use
DefaultModuleInfo
in
org.jfree.base.modules

Best Java code snippets using org.jfree.base.modules.DefaultModuleInfo (Showing top 9 results out of 315)

origin: jfree/jcommon

/**
 * Adds a module to the package manager.
 * Once all modules are added, you have to call initializeModules()
 * to configure and initialize the new modules.
 *
 * @param modClass the module class
 */
public synchronized void addModule(final String modClass) {
  final ArrayList loadModules = new ArrayList();
  final ModuleInfo modInfo = new DefaultModuleInfo
    (modClass, null, null, null);
  if (loadModule(modInfo, new ArrayList(), loadModules, false)) {
    for (int i = 0; i < loadModules.size(); i++) {
      final Module mod = (Module) loadModules.get(i);
      this.modules.add(new PackageState(mod));
    }
  }
}
origin: jfree/jcommon

buffer.append(getClass().getName());
buffer.append("={ModuleClass=");
buffer.append(getModuleClass());
if (getMajorVersion() != null)
 buffer.append(getMajorVersion());
 if (getMinorVersion() != null)
  buffer.append(getMinorVersion());
  if (getPatchLevel() != null)
   buffer.append(getPatchLevel());
origin: org.jfree/com.springsource.org.jfree

 throws IOException
final DefaultModuleInfo mi = new DefaultModuleInfo();
  if ("module".equals(key))
   mi.setModuleClass(b);
   mi.setMajorVersion(b);
   mi.setMinorVersion(b);
   mi.setPatchLevel(b);
origin: jfree/jcommon

 throws IOException
final DefaultModuleInfo mi = new DefaultModuleInfo();
  if ("module".equals(key))
   mi.setModuleClass(b);
   mi.setMajorVersion(b);
   mi.setMinorVersion(b);
   mi.setPatchLevel(b);
origin: org.jfree/jcommon

 throws IOException
final DefaultModuleInfo mi = new DefaultModuleInfo();
  if ("module".equals(key))
   mi.setModuleClass(b);
   mi.setMajorVersion(b);
   mi.setMinorVersion(b);
   mi.setPatchLevel(b);
origin: org.jfree/jcommon

buffer.append(getClass().getName());
buffer.append("={ModuleClass=");
buffer.append(getModuleClass());
if (getMajorVersion() != null)
 buffer.append(getMajorVersion());
 if (getMinorVersion() != null)
  buffer.append(getMinorVersion());
  if (getPatchLevel() != null)
   buffer.append(getPatchLevel());
origin: org.jfree/jcommon

/**
 * Adds a module to the package manager.
 * Once all modules are added, you have to call initializeModules()
 * to configure and initialize the new modules.
 *
 * @param modClass the module class
 */
public synchronized void addModule(final String modClass) {
  final ArrayList loadModules = new ArrayList();
  final ModuleInfo modInfo = new DefaultModuleInfo
    (modClass, null, null, null);
  if (loadModule(modInfo, new ArrayList(), loadModules, false)) {
    for (int i = 0; i < loadModules.size(); i++) {
      final Module mod = (Module) loadModules.get(i);
      this.modules.add(new PackageState(mod));
    }
  }
}
origin: org.jfree/com.springsource.org.jfree

buffer.append(getClass().getName());
buffer.append("={ModuleClass=");
buffer.append(getModuleClass());
if (getMajorVersion() != null)
 buffer.append(getMajorVersion());
 if (getMinorVersion() != null)
  buffer.append(getMinorVersion());
  if (getPatchLevel() != null)
   buffer.append(getPatchLevel());
origin: org.jfree/com.springsource.org.jfree

/**
 * Adds a module to the package manager.
 * Once all modules are added, you have to call initializeModules()
 * to configure and initialize the new modules.
 *
 * @param modClass the module class
 */
public synchronized void addModule(final String modClass) {
  final ArrayList loadModules = new ArrayList();
  final ModuleInfo modInfo = new DefaultModuleInfo
    (modClass, null, null, null);
  if (loadModule(modInfo, new ArrayList(), loadModules, false)) {
    for (int i = 0; i < loadModules.size(); i++) {
      final Module mod = (Module) loadModules.get(i);
      this.modules.add(new PackageState(mod));
    }
  }
}
org.jfree.base.modulesDefaultModuleInfo

Javadoc

Provides a default implementation of the module info interface.

Most used methods

  • <init>
    Creates a new module info an initalizes it with the given values.
  • getMajorVersion
    Returns the major version of the module. This property may be null to indicate that the module versi
  • getMinorVersion
    Returns the minor version of the module. This property may be null to indicate that the module versi
  • getModuleClass
    Returns the class name of the module described implementation.
  • getPatchLevel
    Returns the patch level version of the module. This property may be null to indicate that the module
  • setMajorVersion
    Defines the major version of the module. This property may be null to indicate that the module versi
  • setMinorVersion
    Defines the minor version of the module. This property may be null to indicate that the module versi
  • setModuleClass
    Defines the module class name.
  • setPatchLevel
    Defines the patch level version of the module. This property may be null to indicate that the module

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (Timer)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top plugins for WebStorm
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