Swing JLayeredPane.getLayer() - Documentation error or actual side effect? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T00:35:02Zhttp://stackoverflow.com/feeds/question/499465http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/499465/swing-jlayeredpane-getlayer-documentation-error-or-actual-side-effect0Swing JLayeredPane.getLayer() - Documentation error or actual side effect?Uri2009-01-31T20:14:59Z2009-02-10T16:22:06Z
<p>I'm trying to figure something out about <a href="http://java.sun.com/javase/6/docs/api/javax/swing/JLayeredPane.html" rel="nofollow">JLayeredPane</a> in Swing. If anyone has used this class, feedback would be appreciated.</p>
<p>The documentation for getLayer(JComponent c) states:</p>
<blockquote>
<p>Gets the layer property for a
JComponent, it does not cause any side
effects like setLayer(). (painting,
add/remove, etc) Normally you should
use the instance method getLayer().</p>
</blockquote>
<p>Clearly, there is some mistake here since this is the instance method getLayer() (there aren't overloaded versions)</p>
<p>Is there actually a different call that should be made here, or was somebody just too eager in copying from putLayer():</p>
<blockquote>
<p>Sets the layer property on a
JComponent. This method does not cause
any side effects like setLayer()
(painting, add/remove, etc). Normally
you should use the instance method
setLayer(), in order to get the
desired side-effects (like
repainting).</p>
</blockquote>
http://stackoverflow.com/questions/499465/swing-jlayeredpane-getlayer-documentation-error-or-actual-side-effect/533015#5330151Answer by Gary for Swing JLayeredPane.getLayer() - Documentation error or actual side effect?Gary2009-02-10T16:22:06Z2009-02-10T16:22:06Z<p>Like many things in Swing, the answer to your question is revealed in the swing source code. From JLayeredPane.java:</p>
<pre><code>public static int getLayer(JComponent c) {
Integer i;
if((i = (Integer)c.getClientProperty(LAYER_PROPERTY)) != null)
return i.intValue();
return DEFAULT_LAYER.intValue();
}
public int getLayer(Component c) {
Integer i;
if(c instanceof JComponent)
i = (Integer)((JComponent)c).getClientProperty(LAYER_PROPERTY);
else
i = (Integer)getComponentToLayer().get((Component)c);
if(i == null)
return DEFAULT_LAYER.intValue();
return i.intValue();
}
</code></pre>
<p>It looks like the reason you are seeing some differences here is that the layer of a JComponent instance is stored as a property of the JComponent instance, but the layer of a Component instance is stored within a hashtable of JLayeredPane. Hence, getLayer(JComponent c) can be static while getLayer(Component c) cannot.</p>
<p>As you might imagine, this is just the start of the strangeness of this class. Validating and painting JLayeredPane and contents can get complicated quickly.</p>