< prev index next >

src/java.desktop/share/classes/sun/swing/plaf/synth/DefaultSynthStyle.java

Print this page

        

*** 287,308 **** } /** * Sets the insets. * ! * @param Insets. */ public void setInsets(Insets insets) { this.insets = insets; } /** * Returns the Insets. If <code>to</code> is non-null the resulting * insets will be placed in it, otherwise a new Insets object will be * created and returned. * ! * @param context SynthContext identifying requestor * @param to Where to place Insets * @return Insets. */ public Insets getInsets(SynthContext state, Insets to) { if (to == null) { --- 287,308 ---- } /** * Sets the insets. * ! * @param insets the new insets. */ public void setInsets(Insets insets) { this.insets = insets; } /** * Returns the Insets. If <code>to</code> is non-null the resulting * insets will be placed in it, otherwise a new Insets object will be * created and returned. * ! * @param state SynthContext identifying requestor * @param to Where to place Insets * @return Insets. */ public Insets getInsets(SynthContext state, Insets to) { if (to == null) {
*** 433,443 **** /** * Returns the default value for a particular property. This is only * invoked if this style doesn't define a property for <code>key</code>. * ! * @param state SynthContext identifying requestor * @param key Property being requested. * @return Value of the named property */ public Object getDefaultValue(SynthContext context, Object key) { return super.get(context, key); --- 433,443 ---- /** * Returns the default value for a particular property. This is only * invoked if this style doesn't define a property for <code>key</code>. * ! * @param context SynthContext identifying requestor * @param key Property being requested. * @return Value of the named property */ public Object getDefaultValue(SynthContext context, Object key) { return super.get(context, key);
*** 722,733 **** /** * Creates a new StateInfo with the specified properties * * @param state Component state(s) that this StateInfo should be used * for - * @param painter Painter responsible for rendering - * @param bgPainter Painter responsible for rendering the background * @param font Font for this state * @param colors Colors for this state */ public StateInfo(int state, Font font, Color[] colors) { this.state = state; --- 722,731 ----
< prev index next >