Searched defs:JLayer (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJLayer.java44 * {@code JLayer} is a universal decorator for Swing components
48 * {@code JLayer} delegates the handling of painting and input events to a
52 * work for the JLayer itself and all its subcomponents.
57 * {@code JLayer} is a good solution if you only need to do custom painting
66 * private static JLayer<JComponent> createLayer() {
82 * ((JLayer) c).setLayerEventMask(AWTEvent.MOUSE_MOTION_EVENT_MASK);
88 * ((JLayer) c).setLayerEventMask(0);
92 * public void eventDispatched(AWTEvent e, JLayer<? extends JComponent> l) {
101 * return new JLayer<JComponent>(panel, layerUI);
126 * <b>Note:</b> {@code JLayer} does
151 public final class JLayer<V extends Component> class in inherits:JComponent,Scrollable,PropertyChangeListener,Accessible
173 public JLayer() { method in class:JLayer
185 public JLayer(V view) { method in class:JLayer
197 public JLayer(V view, LayerUI<V> ui) { method in class:JLayer
[all...]

Completed in 215 milliseconds