Tabnine Logo
Module.getRequiredModules
Code IndexAdd Tabnine to your IDE (free)

How to use
getRequiredModules
method
in
org.jfree.base.modules.Module

Best Java code snippets using org.jfree.base.modules.Module.getRequiredModules (Showing top 12 results out of 315)

origin: jfree/jcommon

/**
 * Checks, whether a module is a base module of an given module.
 *
 * @param mod the module which to check
 * @param mi the module info of the suspected base module.
 * @return true, if the given module info describes a base module of the
 * given module, false otherwise.
 */
private static boolean isBaseModule(final Module mod, final ModuleInfo mi)
{
 ModuleInfo[] info = mod.getRequiredModules();
 for (int i = 0; i < info.length; i++)
 {
  if (info[i].getModuleClass().equals(mi.getModuleClass()))
  {
   return true;
  }
 }
 info = mod.getOptionalModules();
 for (int i = 0; i < info.length; i++)
 {
  if (info[i].getModuleClass().equals(mi.getModuleClass()))
  {
   return true;
  }
 }
 return false;
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Checks, whether a module is a base module of an given module.
 *
 * @param mod the module which to check
 * @param mi the module info of the suspected base module.
 * @return true, if the given module info describes a base module of the
 * given module, false otherwise.
 */
private static boolean isBaseModule(final Module mod, final ModuleInfo mi)
{
 ModuleInfo[] info = mod.getRequiredModules();
 for (int i = 0; i < info.length; i++)
 {
  if (info[i].getModuleClass().equals(mi.getModuleClass()))
  {
   return true;
  }
 }
 info = mod.getOptionalModules();
 for (int i = 0; i < info.length; i++)
 {
  if (info[i].getModuleClass().equals(mi.getModuleClass()))
  {
   return true;
  }
 }
 return false;
}
origin: org.jfree/jcommon

/**
 * Checks, whether a module is a base module of an given module.
 *
 * @param mod the module which to check
 * @param mi the module info of the suspected base module.
 * @return true, if the given module info describes a base module of the
 * given module, false otherwise.
 */
private static boolean isBaseModule(final Module mod, final ModuleInfo mi)
{
 ModuleInfo[] info = mod.getRequiredModules();
 for (int i = 0; i < info.length; i++)
 {
  if (info[i].getModuleClass().equals(mi.getModuleClass()))
  {
   return true;
  }
 }
 info = mod.getOptionalModules();
 for (int i = 0; i < info.length; i++)
 {
  if (info[i].getModuleClass().equals(mi.getModuleClass()))
  {
   return true;
  }
 }
 return false;
}
origin: org.jfree/com.springsource.org.jfree

ModuleInfo[] info = childMod.getRequiredModules();
for (int i = 0; i < info.length; i++)
origin: jfree/jcommon

ModuleInfo[] info = childMod.getRequiredModules();
for (int i = 0; i < info.length; i++)
origin: org.jfree/jcommon

ModuleInfo[] info = childMod.getRequiredModules();
for (int i = 0; i < info.length; i++)
origin: jfree/jcommon

modInfo = module.getRequiredModules();
for (int modPos = 0; modPos < modInfo.length; modPos++)
origin: org.jfree/jcommon

modInfo = module.getRequiredModules();
for (int modPos = 0; modPos < modInfo.length; modPos++)
origin: org.jfree/com.springsource.org.jfree

modInfo = module.getRequiredModules();
for (int modPos = 0; modPos < modInfo.length; modPos++)
origin: jfree/jcommon

final ModuleInfo[] required = module.getRequiredModules();
for (int i = 0; i < required.length; i++) {
  if (loadModule(required[i], incompleteModules, modules, true) == false) {
origin: org.jfree/com.springsource.org.jfree

final ModuleInfo[] required = module.getRequiredModules();
for (int i = 0; i < required.length; i++) {
  if (loadModule(required[i], incompleteModules, modules, true) == false) {
origin: org.jfree/jcommon

final ModuleInfo[] required = module.getRequiredModules();
for (int i = 0; i < required.length; i++) {
  if (loadModule(required[i], incompleteModules, modules, true) == false) {
org.jfree.base.modulesModulegetRequiredModules

Javadoc

Returns an array of all required modules. If one of these modules is missing or cannot be initialized, the module itself will be not available.

Popular methods of Module

  • configure
    Configures the module. This should load the default settings of the module.
  • getDescription
    Returns a short description of the modules functionality.
  • getMajorVersion
  • getMinorVersion
  • getModuleClass
  • getName
    Returns the module name. This name should be a short descriptive handle of the module.
  • getOptionalModules
    Returns an array of optional modules. Missing or invalid modules are non fatal and will not harm the
  • getPatchLevel
  • getProducer
    Returns the name of the module producer.
  • getSubSystem
    Returns the modules subsystem. If this module is not part of an subsystem then return the modules na
  • initialize
    Initializes the module. Use this method to perform all initial setup operations. This method is call
  • initialize

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • requestLocationUpdates (LocationManager)
  • getExternalFilesDir (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • JFileChooser (javax.swing)
  • Top 17 PhpStorm Plugins
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