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

How to use
allKeys
method
in
org.jfree.ui.action.DowngradeActionMap

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

origin: jfree/jcommon

/**
 * Returns an array of the keys defined in this <code>ActionMap</code> and
 * its parent. This method differs from <code>keys()</code> in that
 * this method includes the keys defined in the parent.
 *
 * @return all keys of this map and all parents.
 */
public Object[] allKeys() {
  if (this.parent == null) {
    return keys();
  }
  final Object[] parentKeys = this.parent.allKeys();
  final Object[] key = keys();
  final Object[] retval = new Object[parentKeys.length + key.length];
  System.arraycopy(key, 0, retval, 0, key.length);
  System.arraycopy(retval, 0, retval, key.length, retval.length);
  return retval;
}
origin: org.jfree/jcommon

/**
 * Returns an array of the keys defined in this <code>ActionMap</code> and
 * its parent. This method differs from <code>keys()</code> in that
 * this method includes the keys defined in the parent.
 *
 * @return all keys of this map and all parents.
 */
public Object[] allKeys() {
  if (this.parent == null) {
    return keys();
  }
  final Object[] parentKeys = this.parent.allKeys();
  final Object[] key = keys();
  final Object[] retval = new Object[parentKeys.length + key.length];
  System.arraycopy(key, 0, retval, 0, key.length);
  System.arraycopy(retval, 0, retval, key.length, retval.length);
  return retval;
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns an array of the keys defined in this <code>ActionMap</code> and
 * its parent. This method differs from <code>keys()</code> in that
 * this method includes the keys defined in the parent.
 *
 * @return all keys of this map and all parents.
 */
public Object[] allKeys() {
  if (this.parent == null) {
    return keys();
  }
  final Object[] parentKeys = this.parent.allKeys();
  final Object[] key = keys();
  final Object[] retval = new Object[parentKeys.length + key.length];
  System.arraycopy(key, 0, retval, 0, key.length);
  System.arraycopy(retval, 0, retval, key.length, retval.length);
  return retval;
}
org.jfree.ui.actionDowngradeActionMapallKeys

Javadoc

Returns an array of the keys defined in this ActionMap and its parent. This method differs from keys() in that this method includes the keys defined in the parent.

Popular methods of DowngradeActionMap

  • get
    Returns the binding for key, messaging the parent ActionMap if the binding is not locally defined.
  • keys
    Returns the Action names that are bound in this ActionMap.
  • remove
    Removes the binding for key from this ActionMap.

Popular in Java

  • Start an intent from android
  • getSystemService (Context)
  • addToBackStack (FragmentTransaction)
  • getContentResolver (Context)
  • Kernel (java.awt.image)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top Vim plugins
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