Tabnine Logo
ActionRadioButton.getAction
Code IndexAdd Tabnine to your IDE (free)

How to use
getAction
method
in
org.jfree.ui.action.ActionRadioButton

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

origin: org.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: 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

/**
 * 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: jfree/jcommon

 setEnabled(getAction().isEnabled());
 setIcon((Icon) getAction().getValue(Action.SMALL_ICON));
 setText((String) getAction().getValue
   (Action.NAME));
   getAction().getValue(Action.SHORT_DESCRIPTION));
final Action ac = getAction();
if (event.getPropertyName().equals(ActionDowngrade.ACCELERATOR_KEY))
origin: org.jfree/jcommon

 setEnabled(getAction().isEnabled());
 setIcon((Icon) getAction().getValue(Action.SMALL_ICON));
 setText((String) getAction().getValue
   (Action.NAME));
   getAction().getValue(Action.SHORT_DESCRIPTION));
final Action ac = getAction();
if (event.getPropertyName().equals(ActionDowngrade.ACCELERATOR_KEY))
origin: org.jfree/com.springsource.org.jfree

 setEnabled(getAction().isEnabled());
 setIcon((Icon) getAction().getValue(Action.SMALL_ICON));
 setText((String) getAction().getValue
   (Action.NAME));
   getAction().getValue(Action.SHORT_DESCRIPTION));
final Action ac = getAction();
if (event.getPropertyName().equals(ActionDowngrade.ACCELERATOR_KEY))
origin: jfree/jcommon

final Action oldAction = getAction();
if (oldAction != null)
origin: org.jfree/jcommon

final Action oldAction = getAction();
if (oldAction != null)
origin: org.jfree/com.springsource.org.jfree

final Action oldAction = getAction();
if (oldAction != null)
org.jfree.ui.actionActionRadioButtongetAction

Javadoc

Returns the assigned action or null if no action has been assigned.

Popular methods of ActionRadioButton

  • addActionListener
  • getPropertyChangeHandler
    Returns and initializes the PropertyChangehandler for this ActionButton. The PropertyChangeHandler m
  • registerKeyboardAction
  • removeActionListener
  • setAction
    Assigns the given action to this button. The properties of the action will be assigned to the button
  • setEnabled
    Enables and disables this button and if an action is assigned to this button the propertychange is f
  • setIcon
  • setMnemonic
  • setText
  • setToolTipText
  • unregisterKeyboardAction
  • unregisterKeyboardAction

Popular in Java

  • Reading from database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • notifyDataSetChanged (ArrayAdapter)
  • getSharedPreferences (Context)
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • JTextField (javax.swing)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Best plugins for Eclipse
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