congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
org.jfree.base
Code IndexAdd Tabnine to your IDE (free)

How to use org.jfree.base

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

origin: jfree/jcommon

/**
 * Returns the global configuration as modifiable configuration reference.
 *
 * @return the global configuration
 */
public static ModifiableConfiguration getConfiguration() {
  return (ModifiableConfiguration) getInstance().getGlobalConfig();
}
origin: jfree/jcommon

public Library getLibrary() {
  if (this.library == null) {
    this.library = loadLibrary(this.libraryClass);
  }
  return this.library;
}
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: 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

/**
 * Returns the global configuration.
 *
 * @return The global configuration.
 */
public synchronized Configuration getGlobalConfig() {
  if (this.globalConfig == null) {
    this.globalConfig = loadConfiguration();
  }
  return this.globalConfig;
}
origin: jfree/jcommon

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

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

/**
 * Returns the boot instance.
 *
 * @return The boot instance.
 */
public static synchronized AbstractBoot getInstance() {
  if (singleton == null) {
    singleton = new BaseBoot();
  }
  return singleton;
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns the global configuration as modifiable configuration reference.
 *
 * @return the global configuration
 */
public static ModifiableConfiguration getConfiguration() {
  return (ModifiableConfiguration) getInstance().getGlobalConfig();
}
origin: org.jfree/com.springsource.org.jfree

public Library getLibrary() {
  if (library == null) {
    library = loadLibrary(libraryClass);
  }
  return library;
}
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: org.jfree/com.springsource.org.jfree

/**
 * Returns the global configuration.
 *
 * @return The global configuration.
 */
public synchronized Configuration getGlobalConfig() {
  if (this.globalConfig == null) {
    this.globalConfig = loadConfiguration();
  }
  return this.globalConfig;
}
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/jcommon

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

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

/**
 * Returns the global configuration as modifiable configuration reference.
 *
 * @return the global configuration
 */
public static ModifiableConfiguration getConfiguration() {
  return (ModifiableConfiguration) getInstance().getGlobalConfig();
}
origin: org.jfree/jcommon

public Library getLibrary() {
  if (this.library == null) {
    this.library = loadLibrary(this.libraryClass);
  }
  return this.library;
}
origin: jfree/jcommon

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

/**
 * Returns the global configuration.
 *
 * @return The global configuration.
 */
public synchronized Configuration getGlobalConfig() {
  if (this.globalConfig == null) {
    this.globalConfig = loadConfiguration();
  }
  return this.globalConfig;
}
origin: jfree/jcommon

/**
 * Returns the current log target.
 *
 * @return the log target.
 */
public static String getLogTarget()
{
 return BaseBoot.getInstance().getGlobalConfig().getConfigProperty
     (LOGTARGET, LOGTARGET_DEFAULT);
}
org.jfree.base

Most used classes

  • AbstractBoot
    The common base for all Boot classes. This initializes the subsystem and all dependent subsystems. I
  • BaseBoot
    The base boot class. This initializes the services provided by JCommon.
  • BasicProjectInfo$OptionalLibraryHolder
    A helper class, which simplifies the loading of optional library implementations.
  • BasicProjectInfo
    Basic project info.
  • BootableProjectInfo
    Project info for a bootable project. A bootable project provides a controlled way of initalizing all
  • HierarchicalConfiguration,
  • ModifiableConfiguration,
  • PropertyFileConfiguration,
  • SystemPropertyConfiguration,
  • DefaultLog,
  • DefaultLogModule,
  • LogConfiguration,
  • PadMessage,
  • AbstractModule$ReaderHelper,
  • AbstractModule,
  • DefaultModuleInfo,
  • Module,
  • ModuleInfo,
  • ModuleInitializeException
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