Tabnine Logo
DefaultConfiguration.setProperty
Code IndexAdd Tabnine to your IDE (free)

How to use
setProperty
method
in
org.jfree.util.DefaultConfiguration

Best Java code snippets using org.jfree.util.DefaultConfiguration.setProperty (Showing top 4 results out of 315)

origin: jfree/jcommon

/**
 * Sets a parser configuration value.
 *
 * @param key   the key.
 * @param value the value.
 */
public void setConfigProperty(final String key, final String value) {
  if (value == null) {
    this.parserConfiguration.remove(key);
  }
  else {
    this.parserConfiguration.setProperty(key, value);
  }
}
origin: jfree/jcommon

 /**
  * Sets the value of a configuration property.
  *
  * @param key   the property key.
  * @param value the property value.
  */
 public void setConfigProperty(final String key, final String value)
 {
  if (value == null)
  {
   remove(key);
  }
  else
  {
   setProperty(key, value);
  }
 }
}
origin: org.jfree/jcommon

 /**
  * Sets the value of a configuration property.
  *
  * @param key   the property key.
  * @param value the property value.
  */
 public void setConfigProperty(final String key, final String value)
 {
  if (value == null)
  {
   remove(key);
  }
  else
  {
   setProperty(key, value);
  }
 }
}
origin: org.jfree/com.springsource.org.jfree

 /**
  * Sets the value of a configuration property.
  *
  * @param key   the property key.
  * @param value the property value.
  */
 public void setConfigProperty(final String key, final String value)
 {
  if (value == null)
  {
   remove(key);
  }
  else
  {
   setProperty(key, value);
  }
 }
}
org.jfree.utilDefaultConfigurationsetProperty

Popular methods of DefaultConfiguration

  • getProperty
  • keys
  • remove
  • <init>
    Creates an empty property list with no default values.
  • clone
  • findPropertyKeys
    Searches all property keys that start with a given prefix.
  • getConfigProperties
    Returns an enumeration of the property keys.
  • getConfigProperty
    Returns the configuration property with the specified key (or the specified default value if there i

Popular in Java

  • Running tasks concurrently on multiple threads
  • getContentResolver (Context)
  • onCreateOptionsMenu (Activity)
  • getSharedPreferences (Context)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Top plugins for WebStorm
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