congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
AbstractModule.getDescription
Code IndexAdd Tabnine to your IDE (free)

How to use
getDescription
method
in
org.jfree.base.modules.AbstractModule

Best Java code snippets using org.jfree.base.modules.AbstractModule.getDescription (Showing top 3 results out of 315)

origin: jfree/jcommon

/**
 * Returns a string representation of this module.
 * @see java.lang.Object#toString()
 *
 * @return the string representation of this module for debugging purposes.
 */
public String toString()
{
 final StringBuffer buffer = new StringBuffer();
 buffer.append("Module : ");
 buffer.append(getName());
 buffer.append("\n");
 buffer.append("ModuleClass : ");
 buffer.append(getModuleClass());
 buffer.append("\n");
 buffer.append("Version: ");
 buffer.append(getMajorVersion());
 buffer.append(".");
 buffer.append(getMinorVersion());
 buffer.append(".");
 buffer.append(getPatchLevel());
 buffer.append("\n");
 buffer.append("Producer: ");
 buffer.append(getProducer());
 buffer.append("\n");
 buffer.append("Description: ");
 buffer.append(getDescription());
 buffer.append("\n");
 return buffer.toString();
}
origin: org.jfree/jcommon

/**
 * Returns a string representation of this module.
 * @see java.lang.Object#toString()
 *
 * @return the string representation of this module for debugging purposes.
 */
public String toString()
{
 final StringBuffer buffer = new StringBuffer();
 buffer.append("Module : ");
 buffer.append(getName());
 buffer.append("\n");
 buffer.append("ModuleClass : ");
 buffer.append(getModuleClass());
 buffer.append("\n");
 buffer.append("Version: ");
 buffer.append(getMajorVersion());
 buffer.append(".");
 buffer.append(getMinorVersion());
 buffer.append(".");
 buffer.append(getPatchLevel());
 buffer.append("\n");
 buffer.append("Producer: ");
 buffer.append(getProducer());
 buffer.append("\n");
 buffer.append("Description: ");
 buffer.append(getDescription());
 buffer.append("\n");
 return buffer.toString();
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns a string representation of this module.
 * @see java.lang.Object#toString()
 *
 * @return the string representation of this module for debugging purposes.
 */
public String toString()
{
 final StringBuffer buffer = new StringBuffer();
 buffer.append("Module : ");
 buffer.append(getName());
 buffer.append("\n");
 buffer.append("ModuleClass : ");
 buffer.append(getModuleClass());
 buffer.append("\n");
 buffer.append("Version: ");
 buffer.append(getMajorVersion());
 buffer.append(".");
 buffer.append(getMinorVersion());
 buffer.append(".");
 buffer.append(getPatchLevel());
 buffer.append("\n");
 buffer.append("Producer: ");
 buffer.append(getProducer());
 buffer.append("\n");
 buffer.append("Description: ");
 buffer.append(getDescription());
 buffer.append("\n");
 return buffer.toString();
}
org.jfree.base.modulesAbstractModulegetDescription

Javadoc

Returns the module description.

Popular methods of AbstractModule

  • getMajorVersion
  • getMinorVersion
  • getModuleClass
  • getName
    Returns the name of this module.
  • getPatchLevel
  • getProducer
    Returns the producer of the module.
  • isNextLineValueLine
    Checks, whether the next line in the reader is a value line.
  • loadModuleInfo
    Loads the module descriptiong from the given input stream. The module description must conform to th
  • parseKey
    Parses an string to find the key section of the line. This section ends with an colon.
  • parseValue
    Parses the value section of the given line.
  • readExternalModule
    Reads an external module description. This describes either an optional or a required module.
  • readModuleInfo
    Reads the module definition header. This header contains information about the module itself.
  • readExternalModule,
  • readModuleInfo,
  • readValue,
  • setDescription,
  • setMajorVersion,
  • setMinorVersion,
  • setModuleClass,
  • setName,
  • setPatchLevel

Popular in Java

  • Reactive rest calls using spring rest template
  • getSupportFragmentManager (FragmentActivity)
  • onRequestPermissionsResult (Fragment)
  • setContentView (Activity)
  • Permission (java.security)
    Legacy security code; do not use.
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • JTextField (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top plugins for Android Studio
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