Codota Logo
org.jfree.ui.action
Code IndexAdd Codota to your IDE (free)

How to use org.jfree.ui.action

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew LinkedList()
  • Codota IconCollections.emptyList()
  • Codota Iconnew ArrayList()
  • Smart code suggestions by Codota
}
origin: jfree/jcommon

/**
 * Creates a new menu item based on the specified action.
 *
 * @param action the action.
 */
public ActionMenuItem(final Action action)
{
 setAction(action);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Nreates an ActionButton and assigns the given action with the button.
 *
 * @param action  the action.
 */
public ActionRadioButton(final Action action)
{
 setAction(action);
}
origin: jfree/jcommon

/**
 * Returns and initializes the PropertyChangehandler for this ActionButton.
 * The PropertyChangeHandler monitors the action and updates the button if necessary.
 *
 * @return the property change handler.
 */
private ActionEnablePropertyChangeHandler getPropertyChangeHandler() {
  if (this.propertyChangeHandler == null) {
    this.propertyChangeHandler = new ActionEnablePropertyChangeHandler();
  }
  return this.propertyChangeHandler;
}
origin: org.jfree/jcommon

/**
 * Nreates an ActionButton and assigns the given action with the button.
 *
 * @param action the action.
 */
public ActionButton(final Action action) {
  setAction(action);
}
origin: jfree/jcommon

/**
 * Returns and initializes the PropertyChangehandler for this ActionButton.
 * The PropertyChangeHandler monitors the action and updates the button if necessary.
 *
 * @return the property change handler.
 */
private ActionEnablePropertyChangeHandler getPropertyChangeHandler()
{
 if (this.propertyChangeHandler == null)
 {
   this.propertyChangeHandler = new ActionEnablePropertyChangeHandler();
 }
 return this.propertyChangeHandler;
}
origin: org.jfree/jcommon

/**
 * Returns and initializes the PropertyChangehandler for this ActionMenuItem.
 * The PropertyChangeHandler monitors the action and updates the menuitem if
 * necessary.
 *
 * @return the property change handler.
 */
private ActionEnablePropertyChangeHandler getPropertyChangeHandler()
{
 if (this.propertyChangeHandler == null)
 {
  this.propertyChangeHandler = new ActionEnablePropertyChangeHandler();
 }
 return this.propertyChangeHandler;
}
origin: jfree/jcommon

/**
 * Returns the binding for <code>key</code>, messaging the
 * parent <code>ActionMap</code> if the binding is not locally defined.
 *
 * @param key the key to be queried.
 * @return the action for this key, or null if there is no such action.
 */
public Action get(final Object key) {
  final Action retval = (Action) this.actionMap.get(key);
  if (retval != null) {
    return retval;
  }
  if (this.parent != null) {
    return this.parent.get(key);
  }
  return null;
}
origin: jfree/jcommon

/**
 * Enables and disables this button and if an action is assigned to this button the
 * propertychange is forwarded to the assigned action.
 *
 * @param b the new enable-state of this button
 */
public void setEnabled(final boolean b) {
  super.setEnabled(b);
  if (getAction() != null) {
    getAction().setEnabled(b);
  }
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Creates a new menu item based on the specified action.
 *
 * @param action the action.
 */
public ActionMenuItem(final Action action)
{
 setAction(action);
}
origin: jfree/jcommon

/**
 * Nreates an ActionButton and assigns the given action with the button.
 *
 * @param action  the action.
 */
public ActionRadioButton(final Action action)
{
 setAction(action);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns and initializes the PropertyChangehandler for this ActionButton.
 * The PropertyChangeHandler monitors the action and updates the button if necessary.
 *
 * @return the property change handler.
 */
private ActionEnablePropertyChangeHandler getPropertyChangeHandler() {
  if (this.propertyChangeHandler == null) {
    this.propertyChangeHandler = new ActionEnablePropertyChangeHandler();
  }
  return this.propertyChangeHandler;
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Nreates an ActionButton and assigns the given action with the button.
 *
 * @param action the action.
 */
public ActionButton(final Action action) {
  setAction(action);
}
origin: org.jfree/jcommon

/**
 * Returns and initializes the PropertyChangehandler for this ActionButton.
 * The PropertyChangeHandler monitors the action and updates the button if necessary.
 *
 * @return the property change handler.
 */
private ActionEnablePropertyChangeHandler getPropertyChangeHandler()
{
 if (this.propertyChangeHandler == null)
 {
   this.propertyChangeHandler = new ActionEnablePropertyChangeHandler();
 }
 return this.propertyChangeHandler;
}
origin: jfree/jcommon

/**
 * Returns and initializes the PropertyChangehandler for this ActionMenuItem.
 * The PropertyChangeHandler monitors the action and updates the menuitem if
 * necessary.
 *
 * @return the property change handler.
 */
private ActionEnablePropertyChangeHandler getPropertyChangeHandler()
{
 if (this.propertyChangeHandler == null)
 {
  this.propertyChangeHandler = new ActionEnablePropertyChangeHandler();
 }
 return this.propertyChangeHandler;
}
origin: org.jfree/jcommon

/**
 * Creates a new menu item based on the specified action.
 *
 * @param action the action.
 */
public ActionMenuItem(final Action action)
{
 setAction(action);
}
origin: org.jfree/jcommon

/**
 * Nreates an ActionButton and assigns the given action with the button.
 *
 * @param action  the action.
 */
public ActionRadioButton(final Action action)
{
 setAction(action);
}
origin: org.jfree/jcommon

/**
 * Returns and initializes the PropertyChangehandler for this ActionButton.
 * The PropertyChangeHandler monitors the action and updates the button if necessary.
 *
 * @return the property change handler.
 */
private ActionEnablePropertyChangeHandler getPropertyChangeHandler() {
  if (this.propertyChangeHandler == null) {
    this.propertyChangeHandler = new ActionEnablePropertyChangeHandler();
  }
  return this.propertyChangeHandler;
}
origin: jfree/jcommon

/**
 * Nreates an ActionButton and assigns the given action with the button.
 *
 * @param action the action.
 */
public ActionButton(final Action action) {
  setAction(action);
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns and initializes the PropertyChangehandler for this ActionButton.
 * The PropertyChangeHandler monitors the action and updates the button if necessary.
 *
 * @return the property change handler.
 */
private ActionEnablePropertyChangeHandler getPropertyChangeHandler()
{
 if (this.propertyChangeHandler == null)
 {
   this.propertyChangeHandler = new ActionEnablePropertyChangeHandler();
 }
 return this.propertyChangeHandler;
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns and initializes the PropertyChangehandler for this ActionMenuItem.
 * The PropertyChangeHandler monitors the action and updates the menuitem if
 * necessary.
 *
 * @return the property change handler.
 */
private ActionEnablePropertyChangeHandler getPropertyChangeHandler()
{
 if (this.propertyChangeHandler == null)
 {
  this.propertyChangeHandler = new ActionEnablePropertyChangeHandler();
 }
 return this.propertyChangeHandler;
}
org.jfree.ui.action

Most used classes

  • ActionButton
    The ActionButton is used to connect an Action and its properties to a Button. This functionality is
  • AbstractFileSelectionAction
    A base class for all file operations. This implementation provides all methods to let the user selec
  • ActionButton$ActionEnablePropertyChangeHandler
    Helperclass to handle the property change event raised by the action. Changed properties in the acti
  • ActionMenuItem$ActionEnablePropertyChangeHandler
    Helperclass to handle the property change event raised by the action. Changed properties in the acti
  • ActionMenuItem
    The ActionMenuItem is used to connect an Action and its properties to an MenuItem. This functionalit
  • ActionRadioButton,
  • DowngradeActionMap
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now