Codota Logo
BasicProjectInfo$OptionalLibraryHolder.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.jfree.base.BasicProjectInfo$OptionalLibraryHolder
constructor

Best Java code snippets using org.jfree.base.BasicProjectInfo$OptionalLibraryHolder.<init> (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
OutputStreamWriter o =
  • Codota IconOutputStream out;new OutputStreamWriter(out)
  • Codota IconOutputStream out;String charsetName;new OutputStreamWriter(out, charsetName)
  • Codota IconHttpURLConnection connection;new OutputStreamWriter(connection.getOutputStream())
  • Smart code suggestions by Codota
}
origin: jfree/jcommon

/**
 * Adds an optional library. These libraries will be booted, if they define
 * a boot class. A missing class is considered non-fatal and it is assumed
 * that the programm knows how to handle that.
 *
 * @param libraryClass  the library.
 */
public void addOptionalLibrary (final String libraryClass) {
  if (libraryClass == null) {
    throw new NullPointerException("Library classname must be given.");
  }
  this.optionalLibraries.add
      (new OptionalLibraryHolder(libraryClass));
}
origin: org.jfree/jcommon

  /**
   * Adds an optional library. These libraries will be booted, if they define
   * a boot class. A missing class is considered non-fatal and it is assumed
   * that the programm knows how to handle that.
   *
   * @param library  the library.
   */
  public void addOptionalLibrary (final Library library) {
   if (library == null) {
     throw new NullPointerException("Library must be given.");
   }
   this.optionalLibraries.add(new OptionalLibraryHolder(library));
 }
}
origin: jfree/jcommon

  /**
   * Adds an optional library. These libraries will be booted, if they define
   * a boot class. A missing class is considered non-fatal and it is assumed
   * that the programm knows how to handle that.
   *
   * @param library  the library.
   */
  public void addOptionalLibrary (final Library library) {
   if (library == null) {
     throw new NullPointerException("Library must be given.");
   }
   this.optionalLibraries.add(new OptionalLibraryHolder(library));
 }
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Adds an optional library. These libraries will be booted, if they define
 * a boot class. A missing class is considered non-fatal and it is assumed
 * that the programm knows how to handle that.
 *
 * @param library  the library.
 */
public void addOptionalLibrary (final String libraryClass) {
  if (libraryClass == null) {
    throw new NullPointerException("Library classname must be given.");
  }
  this.optionalLibraries.add
      (new OptionalLibraryHolder(libraryClass));
}
origin: org.jfree/jcommon

/**
 * Adds an optional library. These libraries will be booted, if they define
 * a boot class. A missing class is considered non-fatal and it is assumed
 * that the programm knows how to handle that.
 *
 * @param libraryClass  the library.
 */
public void addOptionalLibrary (final String libraryClass) {
  if (libraryClass == null) {
    throw new NullPointerException("Library classname must be given.");
  }
  this.optionalLibraries.add
      (new OptionalLibraryHolder(libraryClass));
}
origin: org.jfree/com.springsource.org.jfree

  /**
   * Adds an optional library. These libraries will be booted, if they define
   * a boot class. A missing class is considered non-fatal and it is assumed
   * that the programm knows how to handle that.
   *
   * @param library  the library.
   */
  public void addOptionalLibrary (final Library library) {
   if (library == null) {
     throw new NullPointerException("Library must be given.");
   }
   this.optionalLibraries.add(new OptionalLibraryHolder(library));
 }
}
org.jfree.baseBasicProjectInfo$OptionalLibraryHolder<init>

Popular methods of BasicProjectInfo$OptionalLibraryHolder

  • getLibrary
  • loadLibrary

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
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