Tabnine Logo
Library
Code IndexAdd Tabnine to your IDE (free)

How to use
Library
in
org.jfree.base

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

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

/**
 * Returns the value for a cell in the table model.
 *
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 *
 * @return the value.
 */
public Object getValueAt(final int row, final int column) {
  Object result = null;
  final Library library = this.libraries[row];
  if (column == 0) {
    result = library.getName();
  }
  else if (column == 1) {
    result = library.getVersion();
  }
  else if (column == 2) {
    result = library.getLicenceName();
  }
  else if (column == 3) {
    result = library.getInfo();
  }
  return result;
}
origin: jfree/jcommon

/**
 * Sets the project info string (for example, this could be the project URL).
 *
 * @param info  the info string.
 */
public void setInfo(final String info) {
  super.setInfo(info);
}
origin: jfree/jcommon

/**
 * Sets the license name.
 *
 * @param licence  the license name.
 */
public void setLicenceName(final String licence) {
  super.setLicenceName(licence);
}
origin: jfree/jcommon

for (int i = 0; i < libraries.length; i++) {
  final Library lib = libraries[i];
  result.append(lib.getName());
  result.append(" ");
  result.append(lib.getVersion());
  result.append(" (");
  result.append(lib.getInfo());
  result.append(").");
origin: jfree/jcommon

/**
 * Sets the project name.
 *
 * @param name  the project name.
 */
public void setName(final String name) {
  super.setName(name);
}
origin: jfree/jcommon

/**
 * Sets the project version number.
 *
 * @param version  the version number.
 */
public void setVersion(final String version) {
  super.setVersion(version);
}
origin: org.jfree/com.springsource.org.jfree

new Library(
  "JUnit", "3.8", "IBM Public Licence", "http://www.junit.org/"
origin: org.jfree/jcommon

for (int i = 0; i < libraries.length; i++) {
  final Library lib = libraries[i];
  result.append(lib.getName());
  result.append(" ");
  result.append(lib.getVersion());
  result.append(" (");
  result.append(lib.getInfo());
  result.append(").");
origin: org.jfree/jcommon

/**
 * Sets the project name.
 *
 * @param name  the project name.
 */
public void setName(final String name) {
  super.setName(name);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Sets the project version number.
 * 
 * @param version  the version number.
 */
public void setVersion(final String version) {
  super.setVersion(version);
}
origin: jfree/jcommon

addOptionalLibrary(new Library("JUnit", "3.8", "IBM Public Licence",
    "http://www.junit.org/"));
origin: org.jfree/jcommon

/**
 * Returns the value for a cell in the table model.
 *
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 *
 * @return the value.
 */
public Object getValueAt(final int row, final int column) {
  Object result = null;
  final Library library = this.libraries[row];
  if (column == 0) {
    result = library.getName();
  }
  else if (column == 1) {
    result = library.getVersion();
  }
  else if (column == 2) {
    result = library.getLicenceName();
  }
  else if (column == 3) {
    result = library.getInfo();
  }
  return result;
}
origin: org.jfree/com.springsource.org.jfree

for (int i = 0; i < libraries.length; i++) {
  final Library lib = libraries[i];
  result.append(lib.getName());
  result.append(" ");
  result.append(lib.getVersion());
  result.append(" (");
  result.append(lib.getInfo());
  result.append(").");
origin: org.jfree/jcommon

/**
 * Sets the project info string (for example, this could be the project URL).
 *
 * @param info  the info string.
 */
public void setInfo(final String info) {
  super.setInfo(info);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Sets the license name.
 * 
 * @param licence  the license name.
 */
public void setLicenceName(final String licence) {
  super.setLicenceName(licence);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Sets the project name.
 * 
 * @param name  the project name.
 */
public void setName(final String name) {
  super.setName(name);
}
origin: org.jfree/jcommon

/**
 * Sets the project version number.
 *
 * @param version  the version number.
 */
public void setVersion(final String version) {
  super.setVersion(version);
}
origin: org.jfree/jcommon

addOptionalLibrary(new Library("JUnit", "3.8", "IBM Public Licence",
    "http://www.junit.org/"));
origin: jfree/jcommon

/**
 * Returns the value for a cell in the table model.
 *
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 *
 * @return the value.
 */
public Object getValueAt(final int row, final int column) {
  Object result = null;
  final Library library = this.libraries[row];
  if (column == 0) {
    result = library.getName();
  }
  else if (column == 1) {
    result = library.getVersion();
  }
  else if (column == 2) {
    result = library.getLicenceName();
  }
  else if (column == 3) {
    result = library.getInfo();
  }
  return result;
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Sets the project info string (for example, this could be the project URL).
 * 
 * @param info  the info string.
 */
public void setInfo(final String info) {
  super.setInfo(info);
}
org.jfree.baseLibrary

Javadoc

A simple class representing a library in a software project. For use in the AboutFrame class.

Most used methods

  • <init>
    Creates a new library reference.
  • getInfo
    Returns the project info for the library.
  • getLicenceName
    Returns the licenceName text.
  • getName
    Returns the library name.
  • getVersion
    Returns the library version.
  • setInfo
    Sets the project info.
  • setLicenceName
    Sets the licence name.
  • setName
    Sets the project name.
  • setVersion
    Sets the version identifier.

Popular in Java

  • Start an intent from android
  • scheduleAtFixedRate (Timer)
  • requestLocationUpdates (LocationManager)
  • onCreateOptionsMenu (Activity)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • JButton (javax.swing)
  • JFrame (javax.swing)
  • Best plugins for Eclipse
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