Tabnine Logo
BootableProjectInfo.getOptionalLibraries
Code IndexAdd Tabnine to your IDE (free)

How to use
getOptionalLibraries
method
in
org.jfree.base.BootableProjectInfo

Best Java code snippets using org.jfree.base.BootableProjectInfo.getOptionalLibraries (Showing top 3 results out of 315)

origin: jfree/jcommon

/**
 * Returns the dependencies.
 * 
 * @return The dependencies.
 */
public BootableProjectInfo[] getDependencies() {
  final ArrayList dependencies = new ArrayList();
  final Library[] libraries = getLibraries();
  for (int i = 0; i < libraries.length; i++) {
   Library lib = libraries[i];
   if (lib instanceof BootableProjectInfo) {
     dependencies.add(lib);
   }
  }
  final Library[] optionalLibraries = getOptionalLibraries();
  for (int i = 0; i < optionalLibraries.length; i++) {
   Library lib = optionalLibraries[i];
   if (lib instanceof BootableProjectInfo) {
     dependencies.add(lib);
   }
  }
  return (BootableProjectInfo[]) dependencies.toArray
    (new BootableProjectInfo[dependencies.size()]);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns the dependencies.
 * 
 * @return The dependencies.
 */
public BootableProjectInfo[] getDependencies() {
  final ArrayList dependencies = new ArrayList();
  final Library[] libraries = getLibraries();
  for (int i = 0; i < libraries.length; i++) {
   Library lib = libraries[i];
   if (lib instanceof BootableProjectInfo) {
     dependencies.add(lib);
   }
  }
  final Library[] optionalLibraries = getOptionalLibraries();
  for (int i = 0; i < optionalLibraries.length; i++) {
   Library lib = optionalLibraries[i];
   if (lib instanceof BootableProjectInfo) {
     dependencies.add(lib);
   }
  }
  return (BootableProjectInfo[]) dependencies.toArray
    (new BootableProjectInfo[dependencies.size()]);
}
origin: org.jfree/jcommon

/**
 * Returns the dependencies.
 * 
 * @return The dependencies.
 */
public BootableProjectInfo[] getDependencies() {
  final ArrayList dependencies = new ArrayList();
  final Library[] libraries = getLibraries();
  for (int i = 0; i < libraries.length; i++) {
   Library lib = libraries[i];
   if (lib instanceof BootableProjectInfo) {
     dependencies.add(lib);
   }
  }
  final Library[] optionalLibraries = getOptionalLibraries();
  for (int i = 0; i < optionalLibraries.length; i++) {
   Library lib = optionalLibraries[i];
   if (lib instanceof BootableProjectInfo) {
     dependencies.add(lib);
   }
  }
  return (BootableProjectInfo[]) dependencies.toArray
    (new BootableProjectInfo[dependencies.size()]);
}
org.jfree.baseBootableProjectInfogetOptionalLibraries

Popular methods of BootableProjectInfo

  • addLibrary
  • getBootClass
    Returns the name of the boot class.
  • getDependencies
    Returns the dependencies.
  • getLibraries
  • getName
  • getVersion
  • setCopyright
  • setInfo
  • setLicenceName
  • setName
  • setVersion
  • setVersion

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • setRequestProperty (URLConnection)
  • compareTo (BigDecimal)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JPanel (javax.swing)
  • Runner (org.openjdk.jmh.runner)
  • Top Vim 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