Codota Logo
BootableProjectInfo
Code IndexAdd Codota to your IDE (free)

How to use
BootableProjectInfo
in
org.jfree.base

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: jfree/jcommon

/**
 * Adds a dependency.
 * 
 * @param projectInfo  the project.
 * @deprecated use 'addLibrary' instead.
 */
public void addDependency(final BootableProjectInfo projectInfo) {
  if (projectInfo == null) {
    throw new NullPointerException();
  }
  addLibrary(projectInfo);
}
origin: org.jfree/jcommon

/**
 * Creates a new library reference.
 *
 * @param name    the name.
 * @param version the version.
 * @param info  the info (for example, the project URL).
 * @param copyright  the copyright statement.
 * @param licenceName the license name.
 */
public BootableProjectInfo(final String name, final String version, final String info,
              final String copyright, final String licenceName) {
  this();
  setName(name);
  setVersion(version);
  setLicenceName(licenceName);
  setInfo(info);
  setCopyright(copyright);
}
origin: jfree/jcommon

/**
 * Creates a new library reference.
 *
 * @param name    the name.
 * @param version the version.
 * @param licence the licence.
 * @param info    the web address or other info.
 */
public BootableProjectInfo(final String name, final String version,
              final String licence, final String info) {
  this();
  setName(name);
  setVersion(version);
  setLicenceName(licence);
  setInfo(info);
}
origin: jfree/jcommon

  final BootableProjectInfo[] childs = info.getDependencies();
  for (int i = 0; i < childs.length; i++) {
    final AbstractBoot boot = loadBooter(childs[i].getBootClass());
    if (boot != null) {
if (info != null)
 Log.info (info.getName() + " " + info.getVersion() + " started.");
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()]);
}
origin: org.jfree/jcommon

  final BootableProjectInfo[] childs = info.getDependencies();
  for (int i = 0; i < childs.length; i++) {
    final AbstractBoot boot = loadBooter(childs[i].getBootClass());
    if (boot != null) {
if (info != null)
 Log.info (info.getName() + " " + info.getVersion() + " started.");
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

  final BootableProjectInfo[] childs = info.getDependencies();
  for (int i = 0; i < childs.length; i++) {
    final AbstractBoot boot = loadBooter(childs[i].getBootClass());
    if (boot != null) {
if (info != null)
 Log.info (info.getName() + " " + info.getVersion() + " started.");
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

/**
 * Adds a dependency.
 * 
 * @param projectInfo  the project.
 * @deprecated use 'addLibrary' instead.
 */
public void addDependency(final BootableProjectInfo projectInfo) {
  if (projectInfo == null) {
    throw new NullPointerException();
  }
  addLibrary(projectInfo);
}
origin: org.jfree/jcommon

/**
 * Creates a new library reference.
 *
 * @param name    the name.
 * @param version the version.
 * @param licence the licence.
 * @param info    the web address or other info.
 */
public BootableProjectInfo(final String name, final String version,
              final String licence, final String info) {
  this();
  setName(name);
  setVersion(version);
  setLicenceName(licence);
  setInfo(info);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Adds a dependency.
 * 
 * @param projectInfo  the project.
 * @deprecated use 'addLibrary' instead.
 */
public void addDependency(final BootableProjectInfo projectInfo) {
  if (projectInfo == null) {
    throw new NullPointerException();
  }
  addLibrary(projectInfo);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Creates a new library reference.
 *
 * @param name    the name.
 * @param version the version.
 * @param info  the info (for example, the project URL).
 * @param copyright  the copyright statement.
 * @param licenceName the license name.
 */
public BootableProjectInfo(final String name, final String version, final String info,
              final String copyright, final String licenceName) {
  this();
  setName(name);
  setVersion(version);
  setLicenceName(licenceName);
  setInfo(info);
  setCopyright(copyright);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Creates a new library reference.
 *
 * @param name    the name.
 * @param version the version.
 * @param licence the licence.
 * @param info    the web address or other info.
 */
public BootableProjectInfo(final String name, final String version,
              final String licence, final String info) {
  this();
  setName(name);
  setVersion(version);
  setLicenceName(licence);
  setInfo(info);
}
origin: jfree/jcommon

/**
 * Creates a new library reference.
 *
 * @param name    the name.
 * @param version the version.
 * @param info  the info (for example, the project URL).
 * @param copyright  the copyright statement.
 * @param licenceName the license name.
 */
public BootableProjectInfo(final String name, final String version, final String info,
              final String copyright, final String licenceName) {
  this();
  setName(name);
  setVersion(version);
  setLicenceName(licenceName);
  setInfo(info);
  setCopyright(copyright);
}
org.jfree.baseBootableProjectInfo

Javadoc

Project info for a bootable project. A bootable project provides a controlled way of initalizing all subsystems by providing a Boot loader implementation.

Most used methods

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

Popular in Java

  • Reading from database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • onCreateOptionsMenu (Activity)
  • getExternalFilesDir (Context)
  • Dictionary (java.util)
    The Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to valu
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JPanel (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
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