alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.openide.windows;


import javax.swing.Action;
import javax.swing.ActionMap;
import javax.swing.JComponent;


// This is almost copy of org.openide.util.UtilitiesCompositeActionMap.
/** ActionMap that delegates to current action map of provided component.
 * Used in TopComopnent lookup.
 * 

Note: This action map is 'passive', i.e putting new mappings * into it makes no effect. Could be changed later. * * @author Peter Zavadsky */ final class DelegateActionMap extends ActionMap { private JComponent component; private ActionMap delegate; public DelegateActionMap(JComponent c) { this.component = c; } public DelegateActionMap(TopComponent c, ActionMap delegate) { this.component = c; this.delegate = delegate; } public int size() { return keys ().length; } public Action get(Object key) { javax.swing.ActionMap m = delegate == null ? component.getActionMap () : delegate; if (m != null) { Action a = m.get (key); if (a != null) { return a; } } java.awt.Component owner = java.awt.KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner(); Action found = null; while (owner != null && owner != component) { if (found == null && (owner instanceof JComponent)) { m = ((JComponent)owner).getActionMap (); if (m != null) { found = m.get (key); } } owner = owner.getParent (); } return owner == component ? found : null; } public Object[] allKeys() { return keys (true); } public Object[] keys() { return keys (false); } private Object[] keys(boolean all) { java.util.Set keys = new java.util.HashSet (); javax.swing.ActionMap m = delegate == null ? component.getActionMap () : delegate; if (m != null) { java.util.List l; if (all) { l = java.util.Arrays.asList (m.allKeys ()); } else { l = java.util.Arrays.asList (m.keys ()); } keys.addAll (l); } return keys.toArray (); } // // Not implemented // public void remove(Object key) { if (delegate != null) { delegate.remove (key); } } public void setParent(ActionMap map) { if (delegate != null) { delegate.setParent (map); } } public void clear() { if (delegate != null) { delegate.clear (); } } public void put(Object key, Action action) { if (delegate != null) { delegate.put (key, action); } } public ActionMap getParent() { return delegate == null ? null : delegate.getParent (); } }

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.