Tabnine Logo
BasicProjectInfo$OptionalLibraryHolder.getLibrary
Code IndexAdd Tabnine to your IDE (free)

How to use
getLibrary
method
in
org.jfree.base.BasicProjectInfo$OptionalLibraryHolder

Best Java code snippets using org.jfree.base.BasicProjectInfo$OptionalLibraryHolder.getLibrary (Showing top 3 results out of 315)

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

/**
 * Returns a list of optional libraries used by the project.
 *
 * @return the list of libraries.
 */
public Library[] getOptionalLibraries() {
  final ArrayList libraries = new ArrayList();
  for (int i = 0; i < optionalLibraries.size(); i++) {
   OptionalLibraryHolder holder =
       (OptionalLibraryHolder) optionalLibraries.get(i);
   Library l = holder.getLibrary();
   if (l != null) {
     libraries.add(l);
   }
  }
  return (Library[]) libraries.toArray(new Library[libraries.size()]);
}
origin: jfree/jcommon

/**
 * Returns a list of optional libraries used by the project.
 *
 * @return the list of libraries.
 */
public Library[] getOptionalLibraries() {
  final ArrayList libraries = new ArrayList();
  for (int i = 0; i < this.optionalLibraries.size(); i++) {
   OptionalLibraryHolder holder =
       (OptionalLibraryHolder) this.optionalLibraries.get(i);
   Library l = holder.getLibrary();
   if (l != null) {
     libraries.add(l);
   }
  }
  return (Library[]) libraries.toArray(new Library[libraries.size()]);
}
origin: org.jfree/jcommon

/**
 * Returns a list of optional libraries used by the project.
 *
 * @return the list of libraries.
 */
public Library[] getOptionalLibraries() {
  final ArrayList libraries = new ArrayList();
  for (int i = 0; i < this.optionalLibraries.size(); i++) {
   OptionalLibraryHolder holder =
       (OptionalLibraryHolder) this.optionalLibraries.get(i);
   Library l = holder.getLibrary();
   if (l != null) {
     libraries.add(l);
   }
  }
  return (Library[]) libraries.toArray(new Library[libraries.size()]);
}
org.jfree.baseBasicProjectInfo$OptionalLibraryHoldergetLibrary

Popular methods of BasicProjectInfo$OptionalLibraryHolder

  • <init>
  • loadLibrary

Popular in Java

  • Reading from database using SQL prepared statement
  • findViewById (Activity)
  • getExternalFilesDir (Context)
  • onRequestPermissionsResult (Fragment)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top 17 Plugins for Android Studio
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