01: package net.xoetrope.builder.editor.components.swing;
02:
03: import javax.swing.JPanel;
04:
05: /**
06: * An inner class that gets the focus and thereby prevents the proxied
07: * component from reacting to the mouse.
08: */
09: public class GlassPanel extends JPanel {
10: public boolean isFocusable() {
11: return true;
12: }
13: }
|