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

  • Finding current android device location
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • notifyDataSetChanged (ArrayAdapter)
  • runOnUiThread (Activity)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • Path (java.nio.file)
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Top 17 Free Sublime Text Plugins
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