< prev index next >
src/java.desktop/share/classes/javax/swing/plaf/synth/SynthPainter.java
Print this page
*** 25,62 ****
package javax.swing.plaf.synth;
import java.awt.*;
/**
! * <code>SynthPainter</code> is used for painting portions of
! * <code>JComponent</code>s. At a minimum each <code>JComponent</code>
* has two paint methods: one for the border and one for the background. Some
! * <code>JComponent</code>s have more than one <code>Region</code>, and as
* a consequence more paint methods.
* <p>
! * Instances of <code>SynthPainter</code> are obtained from the
* {@link javax.swing.plaf.synth.SynthStyle#getPainter} method.
* <p>
! * You typically supply a <code>SynthPainter</code> by way of Synth's
* <a href="doc-files/synthFileFormat.html">file</a> format. The following
! * example registers a painter for all <code>JButton</code>s that will
! * render the image <code>myImage.png</code>:
* <pre>
* <style id="buttonStyle">
* <imagePainter path="myImage.png" sourceInsets="2 2 2 2"
* paintCenter="true" stretch="true"/>
* <insets top="2" bottom="2" left="2" right="2"/>
* </style>
* <bind style="buttonStyle" type="REGION" key="button"/>
*</pre>
* <p>
! * <code>SynthPainter</code> is abstract in so far as it does no painting,
* all the methods
* are empty. While none of these methods are typed to throw an exception,
* subclasses can assume that valid arguments are passed in, and if not
! * they can throw a <code>NullPointerException</code> or
! * <code>IllegalArgumentException</code> in response to invalid arguments.
*
* @since 1.5
* @author Scott Violet
*/
public abstract class SynthPainter {
--- 25,62 ----
package javax.swing.plaf.synth;
import java.awt.*;
/**
! * {@code SynthPainter} is used for painting portions of
! * {@code JComponent}s. At a minimum each {@code JComponent}
* has two paint methods: one for the border and one for the background. Some
! * {@code JComponent}s have more than one {@code Region}, and as
* a consequence more paint methods.
* <p>
! * Instances of {@code SynthPainter} are obtained from the
* {@link javax.swing.plaf.synth.SynthStyle#getPainter} method.
* <p>
! * You typically supply a {@code SynthPainter} by way of Synth's
* <a href="doc-files/synthFileFormat.html">file</a> format. The following
! * example registers a painter for all {@code JButton}s that will
! * render the image {@code myImage.png}:
* <pre>
* <style id="buttonStyle">
* <imagePainter path="myImage.png" sourceInsets="2 2 2 2"
* paintCenter="true" stretch="true"/>
* <insets top="2" bottom="2" left="2" right="2"/>
* </style>
* <bind style="buttonStyle" type="REGION" key="button"/>
*</pre>
* <p>
! * {@code SynthPainter} is abstract in so far as it does no painting,
* all the methods
* are empty. While none of these methods are typed to throw an exception,
* subclasses can assume that valid arguments are passed in, and if not
! * they can throw a {@code NullPointerException} or
! * {@code IllegalArgumentException} in response to invalid arguments.
*
* @since 1.5
* @author Scott Violet
*/
public abstract class SynthPainter {
*** 66,80 ****
static SynthPainter NULL_PAINTER = new SynthPainter() {};
/**
* Paints the background of an arrow button. Arrow buttons are created by
! * some components, such as <code>JScrollBar</code>.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 66,80 ----
static SynthPainter NULL_PAINTER = new SynthPainter() {};
/**
* Paints the background of an arrow button. Arrow buttons are created by
! * some components, such as {@code JScrollBar}.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 83,97 ****
int w, int h) {
}
/**
* Paints the border of an arrow button. Arrow buttons are created by
! * some components, such as <code>JScrollBar</code>.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 83,97 ----
int w, int h) {
}
/**
* Paints the border of an arrow button. Arrow buttons are created by
! * some components, such as {@code JScrollBar}.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 102,116 ****
/**
* Paints the foreground of an arrow button. This method is responsible
* for drawing a graphical representation of a direction, typically
* an arrow. Arrow buttons are created by
! * some components, such as <code>JScrollBar</code>
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param direction One of SwingConstants.NORTH, SwingConstants.SOUTH
--- 102,116 ----
/**
* Paints the foreground of an arrow button. This method is responsible
* for drawing a graphical representation of a direction, typically
* an arrow. Arrow buttons are created by
! * some components, such as {@code JScrollBar}
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param direction One of SwingConstants.NORTH, SwingConstants.SOUTH
*** 123,135 ****
}
/**
* Paints the background of a button.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 123,135 ----
}
/**
* Paints the background of a button.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 139,151 ****
}
/**
* Paints the border of a button.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 139,151 ----
}
/**
* Paints the border of a button.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 155,167 ****
}
/**
* Paints the background of a check box menu item.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 155,167 ----
}
/**
* Paints the background of a check box menu item.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 171,183 ****
}
/**
* Paints the border of a check box menu item.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 171,183 ----
}
/**
* Paints the border of a check box menu item.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 187,199 ****
}
/**
* Paints the background of a check box.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 187,199 ----
}
/**
* Paints the background of a check box.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 203,215 ****
}
/**
* Paints the border of a check box.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 203,215 ----
}
/**
* Paints the border of a check box.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 219,231 ****
}
/**
* Paints the background of a color chooser.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 219,231 ----
}
/**
* Paints the background of a color chooser.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 235,247 ****
}
/**
* Paints the border of a color chooser.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 235,247 ----
}
/**
* Paints the border of a color chooser.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 251,263 ****
}
/**
* Paints the background of a combo box.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 251,263 ----
}
/**
* Paints the background of a combo box.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 267,279 ****
}
/**
* Paints the border of a combo box.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 267,279 ----
}
/**
* Paints the border of a combo box.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 283,295 ****
}
/**
* Paints the background of a desktop icon.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 283,295 ----
}
/**
* Paints the background of a desktop icon.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 299,311 ****
}
/**
* Paints the border of a desktop icon.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 299,311 ----
}
/**
* Paints the border of a desktop icon.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 315,327 ****
}
/**
* Paints the background of a desktop pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 315,327 ----
}
/**
* Paints the background of a desktop pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 331,343 ****
}
/**
* Paints the background of a desktop pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 331,343 ----
}
/**
* Paints the background of a desktop pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 347,359 ****
}
/**
* Paints the background of an editor pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 347,359 ----
}
/**
* Paints the background of an editor pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 363,375 ****
}
/**
* Paints the border of an editor pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 363,375 ----
}
/**
* Paints the border of an editor pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 379,391 ****
}
/**
* Paints the background of a file chooser.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 379,391 ----
}
/**
* Paints the background of a file chooser.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 395,407 ****
}
/**
* Paints the border of a file chooser.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 395,407 ----
}
/**
* Paints the border of a file chooser.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 411,423 ****
}
/**
* Paints the background of a formatted text field.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 411,423 ----
}
/**
* Paints the background of a formatted text field.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 427,439 ****
}
/**
* Paints the border of a formatted text field.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 427,439 ----
}
/**
* Paints the border of a formatted text field.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 443,455 ****
}
/**
* Paints the background of an internal frame title pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 443,455 ----
}
/**
* Paints the background of an internal frame title pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 459,471 ****
}
/**
* Paints the border of an internal frame title pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 459,471 ----
}
/**
* Paints the border of an internal frame title pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 475,487 ****
}
/**
* Paints the background of an internal frame.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 475,487 ----
}
/**
* Paints the background of an internal frame.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 491,503 ****
}
/**
* Paints the border of an internal frame.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 491,503 ----
}
/**
* Paints the border of an internal frame.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 507,519 ****
}
/**
* Paints the background of a label.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 507,519 ----
}
/**
* Paints the background of a label.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 523,535 ****
}
/**
* Paints the border of a label.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 523,535 ----
}
/**
* Paints the border of a label.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 539,551 ****
}
/**
* Paints the background of a list.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 539,551 ----
}
/**
* Paints the background of a list.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 555,567 ****
}
/**
* Paints the border of a list.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 555,567 ----
}
/**
* Paints the border of a list.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 571,583 ****
}
/**
* Paints the background of a menu bar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 571,583 ----
}
/**
* Paints the background of a menu bar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 587,599 ****
}
/**
* Paints the border of a menu bar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 587,599 ----
}
/**
* Paints the border of a menu bar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 603,615 ****
}
/**
* Paints the background of a menu item.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 603,615 ----
}
/**
* Paints the background of a menu item.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 619,631 ****
}
/**
* Paints the border of a menu item.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 619,631 ----
}
/**
* Paints the border of a menu item.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 635,647 ****
}
/**
* Paints the background of a menu.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 635,647 ----
}
/**
* Paints the background of a menu.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 651,663 ****
}
/**
* Paints the border of a menu.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 651,663 ----
}
/**
* Paints the border of a menu.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 667,679 ****
}
/**
* Paints the background of an option pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 667,679 ----
}
/**
* Paints the background of an option pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 683,695 ****
}
/**
* Paints the border of an option pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 683,695 ----
}
/**
* Paints the border of an option pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 699,711 ****
}
/**
* Paints the background of a panel.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 699,711 ----
}
/**
* Paints the background of a panel.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 715,727 ****
}
/**
* Paints the border of a panel.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 715,727 ----
}
/**
* Paints the border of a panel.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 731,743 ****
}
/**
* Paints the background of a password field.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 731,743 ----
}
/**
* Paints the background of a password field.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 747,759 ****
}
/**
* Paints the border of a password field.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 747,759 ----
}
/**
* Paints the border of a password field.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 763,775 ****
}
/**
* Paints the background of a popup menu.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 763,775 ----
}
/**
* Paints the background of a popup menu.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 779,791 ****
}
/**
* Paints the border of a popup menu.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 779,791 ----
}
/**
* Paints the border of a popup menu.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 795,807 ****
}
/**
* Paints the background of a progress bar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 795,807 ----
}
/**
* Paints the background of a progress bar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 812,830 ****
/**
* Paints the background of a progress bar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation one of <code>JProgressBar.HORIZONTAL</code> or
! * <code>JProgressBar.VERTICAL</code>
* @since 1.6
*/
public void paintProgressBarBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 812,830 ----
/**
* Paints the background of a progress bar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation one of {@code JProgressBar.HORIZONTAL} or
! * {@code JProgressBar.VERTICAL}
* @since 1.6
*/
public void paintProgressBarBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 832,844 ****
}
/**
* Paints the border of a progress bar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 832,844 ----
}
/**
* Paints the border of a progress bar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 849,867 ****
/**
* Paints the border of a progress bar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation one of <code>JProgressBar.HORIZONTAL</code> or
! * <code>JProgressBar.VERTICAL</code>
* @since 1.6
*/
public void paintProgressBarBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 849,867 ----
/**
* Paints the border of a progress bar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation one of {@code JProgressBar.HORIZONTAL} or
! * {@code JProgressBar.VERTICAL}
* @since 1.6
*/
public void paintProgressBarBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 870,900 ****
/**
* Paints the foreground of a progress bar. is responsible for
* providing an indication of the progress of the progress bar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation one of <code>JProgressBar.HORIZONTAL</code> or
! * <code>JProgressBar.VERTICAL</code>
*/
public void paintProgressBarForeground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of a radio button menu item.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 870,900 ----
/**
* Paints the foreground of a progress bar. is responsible for
* providing an indication of the progress of the progress bar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation one of {@code JProgressBar.HORIZONTAL} or
! * {@code JProgressBar.VERTICAL}
*/
public void paintProgressBarForeground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of a radio button menu item.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 904,916 ****
}
/**
* Paints the border of a radio button menu item.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 904,916 ----
}
/**
* Paints the border of a radio button menu item.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 920,932 ****
}
/**
* Paints the background of a radio button.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 920,932 ----
}
/**
* Paints the background of a radio button.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 936,948 ****
}
/**
* Paints the border of a radio button.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 936,948 ----
}
/**
* Paints the border of a radio button.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 952,964 ****
}
/**
* Paints the background of a root pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 952,964 ----
}
/**
* Paints the background of a root pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 968,980 ****
}
/**
* Paints the border of a root pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 968,980 ----
}
/**
* Paints the border of a root pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 984,996 ****
}
/**
* Paints the background of a scrollbar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 984,996 ----
}
/**
* Paints the background of a scrollbar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1001,1020 ****
/**
* Paints the background of a scrollbar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * <code>JScrollBar.HORIZONTAL</code> or
! * <code>JScrollBar.VERTICAL</code>
* @since 1.6
*/
public void paintScrollBarBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1001,1020 ----
/**
* Paints the background of a scrollbar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * {@code JScrollBar.HORIZONTAL} or
! * {@code JScrollBar.VERTICAL}
* @since 1.6
*/
public void paintScrollBarBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1022,1034 ****
}
/**
* Paints the border of a scrollbar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1022,1034 ----
}
/**
* Paints the border of a scrollbar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1039,1058 ****
/**
* Paints the border of a scrollbar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * <code>JScrollBar.HORIZONTAL</code> or
! * <code>JScrollBar.VERTICAL</code>
* @since 1.6
*/
public void paintScrollBarBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1039,1058 ----
/**
* Paints the border of a scrollbar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * {@code JScrollBar.HORIZONTAL} or
! * {@code JScrollBar.VERTICAL}
* @since 1.6
*/
public void paintScrollBarBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1060,1115 ****
}
/**
* Paints the background of the thumb of a scrollbar. The thumb provides
* a graphical indication as to how much of the Component is visible in a
! * <code>JScrollPane</code>.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * <code>JScrollBar.HORIZONTAL</code> or
! * <code>JScrollBar.VERTICAL</code>
*/
public void paintScrollBarThumbBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the border of the thumb of a scrollbar. The thumb provides
* a graphical indication as to how much of the Component is visible in a
! * <code>JScrollPane</code>.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * <code>JScrollBar.HORIZONTAL</code> or
! * <code>JScrollBar.VERTICAL</code>
*/
public void paintScrollBarThumbBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of the track of a scrollbar. The track contains
* the thumb.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1060,1115 ----
}
/**
* Paints the background of the thumb of a scrollbar. The thumb provides
* a graphical indication as to how much of the Component is visible in a
! * {@code JScrollPane}.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * {@code JScrollBar.HORIZONTAL} or
! * {@code JScrollBar.VERTICAL}
*/
public void paintScrollBarThumbBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the border of the thumb of a scrollbar. The thumb provides
* a graphical indication as to how much of the Component is visible in a
! * {@code JScrollPane}.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * {@code JScrollBar.HORIZONTAL} or
! * {@code JScrollBar.VERTICAL}
*/
public void paintScrollBarThumbBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of the track of a scrollbar. The track contains
* the thumb.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1121,1140 ****
/**
* Paints the background of the track of a scrollbar. The track contains
* the thumb. This implementation invokes the method of the same name without
* the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * <code>JScrollBar.HORIZONTAL</code> or
! * <code>JScrollBar.VERTICAL</code>
* @since 1.6
*/
public void paintScrollBarTrackBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1121,1140 ----
/**
* Paints the background of the track of a scrollbar. The track contains
* the thumb. This implementation invokes the method of the same name without
* the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * {@code JScrollBar.HORIZONTAL} or
! * {@code JScrollBar.VERTICAL}
* @since 1.6
*/
public void paintScrollBarTrackBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1143,1155 ****
/**
* Paints the border of the track of a scrollbar. The track contains
* the thumb.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1143,1155 ----
/**
* Paints the border of the track of a scrollbar. The track contains
* the thumb.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1161,1180 ****
/**
* Paints the border of the track of a scrollbar. The track contains
* the thumb. This implementation invokes the method of the same name without
* the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * <code>JScrollBar.HORIZONTAL</code> or
! * <code>JScrollBar.VERTICAL</code>
* @since 1.6
*/
public void paintScrollBarTrackBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1161,1180 ----
/**
* Paints the border of the track of a scrollbar. The track contains
* the thumb. This implementation invokes the method of the same name without
* the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param orientation Orientation of the JScrollBar, one of
! * {@code JScrollBar.HORIZONTAL} or
! * {@code JScrollBar.VERTICAL}
* @since 1.6
*/
public void paintScrollBarTrackBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1182,1194 ****
}
/**
* Paints the background of a scroll pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1182,1194 ----
}
/**
* Paints the background of a scroll pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1198,1210 ****
}
/**
* Paints the border of a scroll pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1198,1210 ----
}
/**
* Paints the border of a scroll pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1214,1226 ****
}
/**
* Paints the background of a separator.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1214,1226 ----
}
/**
* Paints the background of a separator.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1231,1249 ****
/**
* Paints the background of a separator. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSeparator.HORIZONTAL</code> or
! * <code>JSeparator.VERTICAL</code>
* @since 1.6
*/
public void paintSeparatorBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1231,1249 ----
/**
* Paints the background of a separator. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSeparator.HORIZONTAL} or
! * {@code JSeparator.VERTICAL}
* @since 1.6
*/
public void paintSeparatorBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1251,1263 ****
}
/**
* Paints the border of a separator.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1251,1263 ----
}
/**
* Paints the border of a separator.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1268,1286 ****
/**
* Paints the border of a separator. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSeparator.HORIZONTAL</code> or
! * <code>JSeparator.VERTICAL</code>
* @since 1.6
*/
public void paintSeparatorBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1268,1286 ----
/**
* Paints the border of a separator. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSeparator.HORIZONTAL} or
! * {@code JSeparator.VERTICAL}
* @since 1.6
*/
public void paintSeparatorBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1288,1318 ****
}
/**
* Paints the foreground of a separator.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSeparator.HORIZONTAL</code> or
! * <code>JSeparator.VERTICAL</code>
*/
public void paintSeparatorForeground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of a slider.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1288,1318 ----
}
/**
* Paints the foreground of a separator.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSeparator.HORIZONTAL} or
! * {@code JSeparator.VERTICAL}
*/
public void paintSeparatorForeground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of a slider.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1323,1341 ****
/**
* Paints the background of a slider. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSlider.HORIZONTAL</code> or
! * <code>JSlider.VERTICAL</code>
* @since 1.6
*/
public void paintSliderBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1323,1341 ----
/**
* Paints the background of a slider. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSlider.HORIZONTAL} or
! * {@code JSlider.VERTICAL}
* @since 1.6
*/
public void paintSliderBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1343,1355 ****
}
/**
* Paints the border of a slider.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1343,1355 ----
}
/**
* Paints the border of a slider.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1360,1378 ****
/**
* Paints the border of a slider. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSlider.HORIZONTAL</code> or
! * <code>JSlider.VERTICAL</code>
* @since 1.6
*/
public void paintSliderBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1360,1378 ----
/**
* Paints the border of a slider. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSlider.HORIZONTAL} or
! * {@code JSlider.VERTICAL}
* @since 1.6
*/
public void paintSliderBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1380,1428 ****
}
/**
* Paints the background of the thumb of a slider.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSlider.HORIZONTAL</code> or
! * <code>JSlider.VERTICAL</code>
*/
public void paintSliderThumbBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the border of the thumb of a slider.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSlider.HORIZONTAL</code> or
! * <code>JSlider.VERTICAL</code>
*/
public void paintSliderThumbBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of the track of a slider.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1380,1428 ----
}
/**
* Paints the background of the thumb of a slider.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSlider.HORIZONTAL} or
! * {@code JSlider.VERTICAL}
*/
public void paintSliderThumbBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the border of the thumb of a slider.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSlider.HORIZONTAL} or
! * {@code JSlider.VERTICAL}
*/
public void paintSliderThumbBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of the track of a slider.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1433,1451 ****
/**
* Paints the background of the track of a slider. This implementation invokes
* the method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSlider.HORIZONTAL</code> or
! * <code>JSlider.VERTICAL</code>
* @since 1.6
*/
public void paintSliderTrackBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1433,1451 ----
/**
* Paints the background of the track of a slider. This implementation invokes
* the method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSlider.HORIZONTAL} or
! * {@code JSlider.VERTICAL}
* @since 1.6
*/
public void paintSliderTrackBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1453,1465 ****
}
/**
* Paints the border of the track of a slider.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1453,1465 ----
}
/**
* Paints the border of the track of a slider.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1470,1488 ****
/**
* Paints the border of the track of a slider. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSlider.HORIZONTAL</code> or
! * <code>JSlider.VERTICAL</code>
* @since 1.6
*/
public void paintSliderTrackBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1470,1488 ----
/**
* Paints the border of the track of a slider. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSlider.HORIZONTAL} or
! * {@code JSlider.VERTICAL}
* @since 1.6
*/
public void paintSliderTrackBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1490,1502 ****
}
/**
* Paints the background of a spinner.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1490,1502 ----
}
/**
* Paints the background of a spinner.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1506,1518 ****
}
/**
* Paints the border of a spinner.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1506,1518 ----
}
/**
* Paints the border of a spinner.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1522,1534 ****
}
/**
* Paints the background of the divider of a split pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1522,1534 ----
}
/**
* Paints the background of the divider of a split pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1539,1557 ****
/**
* Paints the background of the divider of a split pane. This implementation
* invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSplitPane.HORIZONTAL_SPLIT</code> or
! * <code>JSplitPane.VERTICAL_SPLIT</code>
* @since 1.6
*/
public void paintSplitPaneDividerBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1539,1557 ----
/**
* Paints the background of the divider of a split pane. This implementation
* invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSplitPane.HORIZONTAL_SPLIT} or
! * {@code JSplitPane.VERTICAL_SPLIT}
* @since 1.6
*/
public void paintSplitPaneDividerBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1559,1608 ****
}
/**
* Paints the foreground of the divider of a split pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSplitPane.HORIZONTAL_SPLIT</code> or
! * <code>JSplitPane.VERTICAL_SPLIT</code>
*/
public void paintSplitPaneDividerForeground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the divider, when the user is dragging the divider, of a
* split pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JSplitPane.HORIZONTAL_SPLIT</code> or
! * <code>JSplitPane.VERTICAL_SPLIT</code>
*/
public void paintSplitPaneDragDivider(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of a split pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1559,1608 ----
}
/**
* Paints the foreground of the divider of a split pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSplitPane.HORIZONTAL_SPLIT} or
! * {@code JSplitPane.VERTICAL_SPLIT}
*/
public void paintSplitPaneDividerForeground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the divider, when the user is dragging the divider, of a
* split pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JSplitPane.HORIZONTAL_SPLIT} or
! * {@code JSplitPane.VERTICAL_SPLIT}
*/
public void paintSplitPaneDragDivider(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
}
/**
* Paints the background of a split pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1612,1624 ****
}
/**
* Paints the border of a split pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1612,1624 ----
}
/**
* Paints the border of a split pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1628,1640 ****
}
/**
* Paints the background of a tabbed pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1628,1640 ----
}
/**
* Paints the background of a tabbed pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1644,1656 ****
}
/**
* Paints the border of a tabbed pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1644,1656 ----
}
/**
* Paints the border of a tabbed pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1660,1672 ****
}
/**
* Paints the background of the area behind the tabs of a tabbed pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1660,1672 ----
}
/**
* Paints the background of the area behind the tabs of a tabbed pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1678,1698 ****
/**
* Paints the background of the area behind the tabs of a tabbed pane.
* This implementation invokes the method of the same name without the
* orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JTabbedPane.TOP</code>,
! * <code>JTabbedPane.LEFT</code>,
! * <code>JTabbedPane.BOTTOM</code>, or
! * <code>JTabbedPane.RIGHT</code>
* @since 1.6
*/
public void paintTabbedPaneTabAreaBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1678,1698 ----
/**
* Paints the background of the area behind the tabs of a tabbed pane.
* This implementation invokes the method of the same name without the
* orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JTabbedPane.TOP},
! * {@code JTabbedPane.LEFT},
! * {@code JTabbedPane.BOTTOM}, or
! * {@code JTabbedPane.RIGHT}
* @since 1.6
*/
public void paintTabbedPaneTabAreaBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1700,1712 ****
}
/**
* Paints the border of the area behind the tabs of a tabbed pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1700,1712 ----
}
/**
* Paints the border of the area behind the tabs of a tabbed pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1717,1737 ****
/**
* Paints the border of the area behind the tabs of a tabbed pane. This
* implementation invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JTabbedPane.TOP</code>,
! * <code>JTabbedPane.LEFT</code>,
! * <code>JTabbedPane.BOTTOM</code>, or
! * <code>JTabbedPane.RIGHT</code>
* @since 1.6
*/
public void paintTabbedPaneTabAreaBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 1717,1737 ----
/**
* Paints the border of the area behind the tabs of a tabbed pane. This
* implementation invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JTabbedPane.TOP},
! * {@code JTabbedPane.LEFT},
! * {@code JTabbedPane.BOTTOM}, or
! * {@code JTabbedPane.RIGHT}
* @since 1.6
*/
public void paintTabbedPaneTabAreaBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 1739,1751 ****
}
/**
* Paints the background of a tab of a tabbed pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param tabIndex Index of tab being painted.
--- 1739,1751 ----
}
/**
* Paints the background of a tab of a tabbed pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param tabIndex Index of tab being painted.
*** 1757,1778 ****
/**
* Paints the background of a tab of a tabbed pane. This implementation
* invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param tabIndex Index of tab being painted.
! * @param orientation One of <code>JTabbedPane.TOP</code>,
! * <code>JTabbedPane.LEFT</code>,
! * <code>JTabbedPane.BOTTOM</code>, or
! * <code>JTabbedPane.RIGHT</code>
* @since 1.6
*/
public void paintTabbedPaneTabBackground(SynthContext context, Graphics g,
int x, int y, int w, int h,
int tabIndex, int orientation) {
--- 1757,1778 ----
/**
* Paints the background of a tab of a tabbed pane. This implementation
* invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param tabIndex Index of tab being painted.
! * @param orientation One of {@code JTabbedPane.TOP},
! * {@code JTabbedPane.LEFT},
! * {@code JTabbedPane.BOTTOM}, or
! * {@code JTabbedPane.RIGHT}
* @since 1.6
*/
public void paintTabbedPaneTabBackground(SynthContext context, Graphics g,
int x, int y, int w, int h,
int tabIndex, int orientation) {
*** 1780,1792 ****
}
/**
* Paints the border of a tab of a tabbed pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param tabIndex Index of tab being painted.
--- 1780,1792 ----
}
/**
* Paints the border of a tab of a tabbed pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param tabIndex Index of tab being painted.
*** 1798,1819 ****
/**
* Paints the border of a tab of a tabbed pane. This implementation invokes
* the method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param tabIndex Index of tab being painted.
! * @param orientation One of <code>JTabbedPane.TOP</code>,
! * <code>JTabbedPane.LEFT</code>,
! * <code>JTabbedPane.BOTTOM</code>, or
! * <code>JTabbedPane.RIGHT</code>
* @since 1.6
*/
public void paintTabbedPaneTabBorder(SynthContext context, Graphics g,
int x, int y, int w, int h,
int tabIndex, int orientation) {
--- 1798,1819 ----
/**
* Paints the border of a tab of a tabbed pane. This implementation invokes
* the method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
* @param tabIndex Index of tab being painted.
! * @param orientation One of {@code JTabbedPane.TOP},
! * {@code JTabbedPane.LEFT},
! * {@code JTabbedPane.BOTTOM}, or
! * {@code JTabbedPane.RIGHT}
* @since 1.6
*/
public void paintTabbedPaneTabBorder(SynthContext context, Graphics g,
int x, int y, int w, int h,
int tabIndex, int orientation) {
*** 1822,1834 ****
/**
* Paints the background of the area that contains the content of the
* selected tab of a tabbed pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1822,1834 ----
/**
* Paints the background of the area that contains the content of the
* selected tab of a tabbed pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1839,1851 ****
/**
* Paints the border of the area that contains the content of the
* selected tab of a tabbed pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1839,1851 ----
/**
* Paints the border of the area that contains the content of the
* selected tab of a tabbed pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1854,1866 ****
}
/**
* Paints the background of the header of a table.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1854,1866 ----
}
/**
* Paints the background of the header of a table.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1870,1882 ****
}
/**
* Paints the border of the header of a table.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1870,1882 ----
}
/**
* Paints the border of the header of a table.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1886,1898 ****
}
/**
* Paints the background of a table.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1886,1898 ----
}
/**
* Paints the background of a table.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1902,1914 ****
}
/**
* Paints the border of a table.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1902,1914 ----
}
/**
* Paints the border of a table.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1918,1930 ****
}
/**
* Paints the background of a text area.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1918,1930 ----
}
/**
* Paints the background of a text area.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1934,1946 ****
}
/**
* Paints the border of a text area.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1934,1946 ----
}
/**
* Paints the border of a text area.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1950,1962 ****
}
/**
* Paints the background of a text pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1950,1962 ----
}
/**
* Paints the background of a text pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1966,1978 ****
}
/**
* Paints the border of a text pane.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1966,1978 ----
}
/**
* Paints the border of a text pane.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1982,1994 ****
}
/**
* Paints the background of a text field.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1982,1994 ----
}
/**
* Paints the background of a text field.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 1998,2010 ****
}
/**
* Paints the border of a text field.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 1998,2010 ----
}
/**
* Paints the border of a text field.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2014,2026 ****
}
/**
* Paints the background of a toggle button.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2014,2026 ----
}
/**
* Paints the background of a toggle button.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2030,2042 ****
}
/**
* Paints the border of a toggle button.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2030,2042 ----
}
/**
* Paints the border of a toggle button.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2046,2058 ****
}
/**
* Paints the background of a tool bar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2046,2058 ----
}
/**
* Paints the background of a tool bar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2063,2081 ****
/**
* Paints the background of a tool bar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JToolBar.HORIZONTAL</code> or
! * <code>JToolBar.VERTICAL</code>
* @since 1.6
*/
public void paintToolBarBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 2063,2081 ----
/**
* Paints the background of a tool bar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JToolBar.HORIZONTAL} or
! * {@code JToolBar.VERTICAL}
* @since 1.6
*/
public void paintToolBarBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 2083,2095 ****
}
/**
* Paints the border of a tool bar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2083,2095 ----
}
/**
* Paints the border of a tool bar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2100,2118 ****
/**
* Paints the border of a tool bar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JToolBar.HORIZONTAL</code> or
! * <code>JToolBar.VERTICAL</code>
* @since 1.6
*/
public void paintToolBarBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 2100,2118 ----
/**
* Paints the border of a tool bar. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JToolBar.HORIZONTAL} or
! * {@code JToolBar.VERTICAL}
* @since 1.6
*/
public void paintToolBarBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 2120,2132 ****
}
/**
* Paints the background of the tool bar's content area.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2120,2132 ----
}
/**
* Paints the background of the tool bar's content area.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2137,2155 ****
/**
* Paints the background of the tool bar's content area. This implementation
* invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JToolBar.HORIZONTAL</code> or
! * <code>JToolBar.VERTICAL</code>
* @since 1.6
*/
public void paintToolBarContentBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 2137,2155 ----
/**
* Paints the background of the tool bar's content area. This implementation
* invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JToolBar.HORIZONTAL} or
! * {@code JToolBar.VERTICAL}
* @since 1.6
*/
public void paintToolBarContentBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 2157,2169 ****
}
/**
* Paints the border of the content area of a tool bar.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2157,2169 ----
}
/**
* Paints the border of the content area of a tool bar.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2174,2192 ****
/**
* Paints the border of the content area of a tool bar. This implementation
* invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JToolBar.HORIZONTAL</code> or
! * <code>JToolBar.VERTICAL</code>
* @since 1.6
*/
public void paintToolBarContentBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 2174,2192 ----
/**
* Paints the border of the content area of a tool bar. This implementation
* invokes the method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JToolBar.HORIZONTAL} or
! * {@code JToolBar.VERTICAL}
* @since 1.6
*/
public void paintToolBarContentBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 2195,2207 ****
/**
* Paints the background of the window containing the tool bar when it
* has been detached from its primary frame.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2195,2207 ----
/**
* Paints the background of the window containing the tool bar when it
* has been detached from its primary frame.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2213,2231 ****
/**
* Paints the background of the window containing the tool bar when it
* has been detached from its primary frame. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JToolBar.HORIZONTAL</code> or
! * <code>JToolBar.VERTICAL</code>
* @since 1.6
*/
public void paintToolBarDragWindowBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 2213,2231 ----
/**
* Paints the background of the window containing the tool bar when it
* has been detached from its primary frame. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JToolBar.HORIZONTAL} or
! * {@code JToolBar.VERTICAL}
* @since 1.6
*/
public void paintToolBarDragWindowBackground(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 2234,2246 ****
/**
* Paints the border of the window containing the tool bar when it
* has been detached from it's primary frame.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2234,2246 ----
/**
* Paints the border of the window containing the tool bar when it
* has been detached from it's primary frame.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2252,2270 ****
/**
* Paints the border of the window containing the tool bar when it
* has been detached from it's primary frame. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of <code>JToolBar.HORIZONTAL</code> or
! * <code>JToolBar.VERTICAL</code>
* @since 1.6
*/
public void paintToolBarDragWindowBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
--- 2252,2270 ----
/**
* Paints the border of the window containing the tool bar when it
* has been detached from it's primary frame. This implementation invokes the
* method of the same name without the orientation.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
! * @param orientation One of {@code JToolBar.HORIZONTAL} or
! * {@code JToolBar.VERTICAL}
* @since 1.6
*/
public void paintToolBarDragWindowBorder(SynthContext context,
Graphics g, int x, int y,
int w, int h, int orientation) {
*** 2272,2284 ****
}
/**
* Paints the background of a tool tip.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2272,2284 ----
}
/**
* Paints the background of a tool tip.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2288,2300 ****
}
/**
* Paints the border of a tool tip.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2288,2300 ----
}
/**
* Paints the border of a tool tip.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2304,2316 ****
}
/**
* Paints the background of a tree.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2304,2316 ----
}
/**
* Paints the background of a tree.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2320,2332 ****
}
/**
* Paints the border of a tree.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2320,2332 ----
}
/**
* Paints the border of a tree.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2336,2348 ****
}
/**
* Paints the background of the row containing a cell in a tree.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2336,2348 ----
}
/**
* Paints the background of the row containing a cell in a tree.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2352,2364 ****
}
/**
* Paints the border of the row containing a cell in a tree.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2352,2364 ----
}
/**
* Paints the border of the row containing a cell in a tree.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2368,2380 ****
}
/**
* Paints the focus indicator for a cell in a tree when it has focus.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2368,2380 ----
}
/**
* Paints the focus indicator for a cell in a tree when it has focus.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2384,2396 ****
}
/**
* Paints the background of the viewport.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2384,2396 ----
}
/**
* Paints the background of the viewport.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
*** 2400,2412 ****
}
/**
* Paints the border of a viewport.
*
! * @param context SynthContext identifying the <code>JComponent</code> and
! * <code>Region</code> to paint to
! * @param g <code>Graphics</code> to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
--- 2400,2412 ----
}
/**
* Paints the border of a viewport.
*
! * @param context SynthContext identifying the {@code JComponent} and
! * {@code Region} to paint to
! * @param g {@code Graphics} to paint to
* @param x X coordinate of the area to paint to
* @param y Y coordinate of the area to paint to
* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
< prev index next >