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

/openjdk7/jdk/test/javax/accessibility/6986385/
H A Dbug6986385.java26 @summary JLayer should implement accessible interface
38 JLayer l = new JLayer();
41 throw new RuntimeException("JLayer's AccessibleContext is null");
44 throw new RuntimeException("JLayer's AccessibleRole must be PANEL");
/openjdk7/jdk/test/javax/swing/JLayer/6875153/
H A Dbug6875153.java26 * @summary JLayer.isOptimizedDrawingEnabled() throws NPE for null glass pane set
35 JLayer layer = new JLayer();
/openjdk7/jdk/test/javax/swing/JLayer/6875716/
H A Dbug6875716.java26 * @summary JLayer.remove((Component)null) should behave consistently in (not) throwing NPE
36 JLayer<Component> layer = new JLayer<Component>(new Component(){});
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DLayerUI.java37 * The base class for all {@link javax.swing.JLayer}'s UI delegates.
40 * painting of the {@code JLayer}
41 * and {@link #eventDispatched(AWTEvent, JLayer)} method is notified
42 * about any {@code AWTEvent}s which have been generated by a {@code JLayer}
50 * by multiple {@code JLayer}s or not shareable.
52 * @param <V> one of the super types of {@code JLayer}'s view component
54 * @see JLayer#setUI(LayerUI)
55 * @see JLayer#setView(Component)
56 * @see JLayer#getView()
83 * Processes {@code AWTEvent}s for {@code JLayer}
[all...]
/openjdk7/jdk/test/javax/swing/JLayer/6994419/
H A Dbug6994419.java26 * @summary JLayer.removeAll() behavior doesn't correspond to JLayer.remove() behavior.
40 JLayer<JComponent> l = new JLayer<JComponent>(new JButton());
/openjdk7/jdk/test/javax/swing/JLayer/SerializationTest/
H A DSerializationTest.java26 * @summary Makes sure that JLayer is synchronizable
44 JLayer<JButton> layer = new JLayer<JButton>(new JButton("Hello"));
55 JLayer newLayer = (JLayer) inputStream.readObject();
58 throw new RuntimeException("JLayer's glassPane is null");
/openjdk7/jdk/test/javax/swing/JLayer/6872503/
H A Dbug6872503.java26 * @summary Checks that JLayer correctly works with its AWTEventListener
37 static JLayer<Component> l1;
38 static JLayer<Component> l2;
44 l1 = new JLayer<Component>();
47 l2 = new JLayer<Component>();
/openjdk7/jdk/test/javax/swing/JLayer/6824395/
H A Dbug6824395.java26 * @summary Checks that JLayer inside JViewport works is correctly laid out
57 JLayer<JEditorPane> editorPaneLayer = new JLayer<JEditorPane>(editorPane);
/openjdk7/jdk/test/javax/swing/JTable/7068740/
H A Dbug7068740.java26 @summary JTable wrapped in JLayer can't use PGUP/PGDOWN keys
70 JLayer<JComponent> layer = new JLayer<>(table, layerUI);
/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&lt;JComponent&gt; createLayer() {
82 * ((JLayer) c).setLayerEventMask(AWTEvent.MOUSE_MOTION_EVENT_MASK);
88 * ((JLayer) c).setLayerEventMask(0);
92 * public void eventDispatched(AWTEvent e, JLayer&lt;? extends JComponent&gt; l) {
101 * return new JLayer&lt;JComponent&gt;(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...]
H A DSwingUtilities.java1987 * which is not an instance of {@link JLayer}.
1990 * the first ancestor of, which is not a {@link JLayer} instance.
1993 * which is not an instance of {@link JLayer}.
1997 * @see JLayer
2003 while(parent instanceof JLayer) {
2011 * which is not an instance of {@code JLayer}.
2014 * If the {@code viewport}'s view component is not a {@code JLayer},
2016 * otherwise {@link JLayer#getView()} will be recursively
2017 * called on all descending {@code JLayer}s.
2020 * which in not a {@code JLayer} instanc
[all...]

Completed in 47 milliseconds