Java Doc for SynthPainter.java in  » 6.0-JDK-Core » swing » javax » swing » plaf » synth » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » swing » javax.swing.plaf.synth 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.swing.plaf.synth.SynthPainter

All known Subclasses:   javax.swing.plaf.synth.ImagePainter,
SynthPainter
abstract public class SynthPainter (Code)
SynthPainter is used for painting portions of JComponents. At a minimum each JComponent has two paint methods: one for the border and one for the background. Some JComponents have more than one Region, and as a consequence more paint methods.

Instances of SynthPainter are obtained from the javax.swing.plaf.synth.SynthStyle.getPainter method.

You typically supply a SynthPainter by way of Synth's file format. The following example registers a painter for all JButtons that will render the image myImage.png:

 <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"/>
 

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 NullPointerException or IllegalArgumentException in response to invalid arguments.
version:
   1.19, 05/05/07
since:
   1.5
author:
   Scott Violet



Field Summary
static  SynthPainterNULL_PAINTER
     Used to avoid null painter checks everywhere.


Method Summary
public  voidpaintArrowButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of an arrow button.
public  voidpaintArrowButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of an arrow button.
public  voidpaintArrowButtonForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int direction)
     Paints the foreground of an arrow button.
public  voidpaintButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a button.
public  voidpaintButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a button.
public  voidpaintCheckBoxBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a check box.
public  voidpaintCheckBoxBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a check box.
public  voidpaintCheckBoxMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a check box menu item.
public  voidpaintCheckBoxMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a check box menu item.
public  voidpaintColorChooserBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a color chooser.
public  voidpaintColorChooserBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a color chooser.
public  voidpaintComboBoxBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a combo box.
public  voidpaintComboBoxBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a combo box.
public  voidpaintDesktopIconBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a desktop icon.
public  voidpaintDesktopIconBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a desktop icon.
public  voidpaintDesktopPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a desktop pane.
public  voidpaintDesktopPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a desktop pane.
public  voidpaintEditorPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of an editor pane.
public  voidpaintEditorPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of an editor pane.
public  voidpaintFileChooserBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a file chooser.
public  voidpaintFileChooserBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a file chooser.
public  voidpaintFormattedTextFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a formatted text field.
public  voidpaintFormattedTextFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a formatted text field.
public  voidpaintInternalFrameBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of an internal frame.
public  voidpaintInternalFrameBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of an internal frame.
public  voidpaintInternalFrameTitlePaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of an internal frame title pane.
public  voidpaintInternalFrameTitlePaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of an internal frame title pane.
public  voidpaintLabelBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a label.
public  voidpaintLabelBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a label.
public  voidpaintListBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a list.
public  voidpaintListBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a list.
public  voidpaintMenuBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a menu.
public  voidpaintMenuBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a menu bar.
public  voidpaintMenuBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a menu bar.
public  voidpaintMenuBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a menu.
public  voidpaintMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a menu item.
public  voidpaintMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a menu item.
public  voidpaintOptionPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of an option pane.
public  voidpaintOptionPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of an option pane.
public  voidpaintPanelBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a panel.
public  voidpaintPanelBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a panel.
public  voidpaintPasswordFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a password field.
public  voidpaintPasswordFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a password field.
public  voidpaintPopupMenuBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a popup menu.
public  voidpaintPopupMenuBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a popup menu.
public  voidpaintProgressBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a progress bar.
public  voidpaintProgressBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of a progress bar.
public  voidpaintProgressBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a progress bar.
public  voidpaintProgressBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of a progress bar.
public  voidpaintProgressBarForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the foreground of a progress bar.
public  voidpaintRadioButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a radio button.
public  voidpaintRadioButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a radio button.
public  voidpaintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a radio button menu item.
public  voidpaintRadioButtonMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a radio button menu item.
public  voidpaintRootPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a root pane.
public  voidpaintRootPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a root pane.
public  voidpaintScrollBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a scrollbar.
public  voidpaintScrollBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of a scrollbar.
public  voidpaintScrollBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a scrollbar.
public  voidpaintScrollBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of a scrollbar.
public  voidpaintScrollBarThumbBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of the thumb of a scrollbar.
public  voidpaintScrollBarThumbBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of the thumb of a scrollbar.
public  voidpaintScrollBarTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the track of a scrollbar.
public  voidpaintScrollBarTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of the track of a scrollbar.
public  voidpaintScrollBarTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of the track of a scrollbar.
public  voidpaintScrollBarTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of the track of a scrollbar.
public  voidpaintScrollPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a scroll pane.
public  voidpaintScrollPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a scroll pane.
public  voidpaintSeparatorBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a separator.
public  voidpaintSeparatorBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of a separator.
public  voidpaintSeparatorBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a separator.
public  voidpaintSeparatorBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of a separator.
public  voidpaintSeparatorForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the foreground of a separator.
public  voidpaintSliderBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a slider.
public  voidpaintSliderBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of a slider.
public  voidpaintSliderBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a slider.
public  voidpaintSliderBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of a slider.
public  voidpaintSliderThumbBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of the thumb of a slider.
public  voidpaintSliderThumbBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of the thumb of a slider.
public  voidpaintSliderTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the track of a slider.
public  voidpaintSliderTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of the track of a slider.
public  voidpaintSliderTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of the track of a slider.
public  voidpaintSliderTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of the track of a slider.
public  voidpaintSpinnerBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a spinner.
public  voidpaintSpinnerBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a spinner.
public  voidpaintSplitPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a split pane.
public  voidpaintSplitPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a split pane.
public  voidpaintSplitPaneDividerBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the divider of a split pane.
public  voidpaintSplitPaneDividerBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of the divider of a split pane.
public  voidpaintSplitPaneDividerForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the foreground of the divider of a split pane.
public  voidpaintSplitPaneDragDivider(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.
public  voidpaintTabbedPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a tabbed pane.
public  voidpaintTabbedPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a tabbed pane.
public  voidpaintTabbedPaneContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the area that contains the content of the selected tab of a tabbed pane.
public  voidpaintTabbedPaneContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of the area that contains the content of the selected tab of a tabbed pane.
public  voidpaintTabbedPaneTabAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the area behind the tabs of a tabbed pane.
public  voidpaintTabbedPaneTabAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of the area behind the tabs of a tabbed pane.
public  voidpaintTabbedPaneTabAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of the area behind the tabs of a tabbed pane.
public  voidpaintTabbedPaneTabAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of the area behind the tabs of a tabbed pane.
public  voidpaintTabbedPaneTabBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex)
     Paints the background of a tab of a tabbed pane.
public  voidpaintTabbedPaneTabBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex, int orientation)
     Paints the background of a tab of a tabbed pane.
public  voidpaintTabbedPaneTabBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex)
     Paints the border of a tab of a tabbed pane.
public  voidpaintTabbedPaneTabBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex, int orientation)
     Paints the border of a tab of a tabbed pane.
public  voidpaintTableBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a table.
public  voidpaintTableBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a table.
public  voidpaintTableHeaderBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the header of a table.
public  voidpaintTableHeaderBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of the header of a table.
public  voidpaintTextAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a text area.
public  voidpaintTextAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a text area.
public  voidpaintTextFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a text field.
public  voidpaintTextFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a text field.
public  voidpaintTextPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a text pane.
public  voidpaintTextPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a text pane.
public  voidpaintToggleButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a toggle button.
public  voidpaintToggleButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a toggle button.
public  voidpaintToolBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a tool bar.
public  voidpaintToolBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of a tool bar.
public  voidpaintToolBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a tool bar.
public  voidpaintToolBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of a tool bar.
public  voidpaintToolBarContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the tool bar's content area.
public  voidpaintToolBarContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of the tool bar's content area.
public  voidpaintToolBarContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of the content area of a tool bar.
public  voidpaintToolBarContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of the content area of a tool bar.
public  voidpaintToolBarDragWindowBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the window containing the tool bar when it has been detached from its primary frame.
public  voidpaintToolBarDragWindowBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the background of the window containing the tool bar when it has been detached from its primary frame.
public  voidpaintToolBarDragWindowBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of the window containing the tool bar when it has been detached from it's primary frame.
public  voidpaintToolBarDragWindowBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)
     Paints the border of the window containing the tool bar when it has been detached from it's primary frame.
public  voidpaintToolTipBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a tool tip.
public  voidpaintToolTipBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a tool tip.
public  voidpaintTreeBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of a tree.
public  voidpaintTreeBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a tree.
public  voidpaintTreeCellBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the row containing a cell in a tree.
public  voidpaintTreeCellBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of the row containing a cell in a tree.
public  voidpaintTreeCellFocus(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the focus indicator for a cell in a tree when it has focus.
public  voidpaintViewportBackground(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the background of the viewport.
public  voidpaintViewportBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
     Paints the border of a viewport.

Field Detail
NULL_PAINTER
static SynthPainter NULL_PAINTER(Code)
Used to avoid null painter checks everywhere.





Method Detail
paintArrowButtonBackground
public void paintArrowButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of an arrow button. Arrow buttons are created by some components, such as JScrollBar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintArrowButtonBorder
public void paintArrowButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of an arrow button. Arrow buttons are created by some components, such as JScrollBar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintArrowButtonForeground
public void paintArrowButtonForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int direction)(Code)
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 JScrollBar
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  direction - One of SwingConstants.NORTH, SwingConstants.SOUTHSwingConstants.EAST or SwingConstants.WEST



paintButtonBackground
public void paintButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a button.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintButtonBorder
public void paintButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a button.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintCheckBoxBackground
public void paintCheckBoxBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a check box.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintCheckBoxBorder
public void paintCheckBoxBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a check box.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintCheckBoxMenuItemBackground
public void paintCheckBoxMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a check box menu item.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintCheckBoxMenuItemBorder
public void paintCheckBoxMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a check box menu item.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintColorChooserBackground
public void paintColorChooserBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a color chooser.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintColorChooserBorder
public void paintColorChooserBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a color chooser.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintComboBoxBackground
public void paintComboBoxBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a combo box.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintComboBoxBorder
public void paintComboBoxBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a combo box.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintDesktopIconBackground
public void paintDesktopIconBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a desktop icon.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintDesktopIconBorder
public void paintDesktopIconBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a desktop icon.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintDesktopPaneBackground
public void paintDesktopPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a desktop pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintDesktopPaneBorder
public void paintDesktopPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a desktop pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintEditorPaneBackground
public void paintEditorPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of an editor pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintEditorPaneBorder
public void paintEditorPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of an editor pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintFileChooserBackground
public void paintFileChooserBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a file chooser.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintFileChooserBorder
public void paintFileChooserBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a file chooser.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintFormattedTextFieldBackground
public void paintFormattedTextFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a formatted text field.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintFormattedTextFieldBorder
public void paintFormattedTextFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a formatted text field.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintInternalFrameBackground
public void paintInternalFrameBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of an internal frame.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintInternalFrameBorder
public void paintInternalFrameBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of an internal frame.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintInternalFrameTitlePaneBackground
public void paintInternalFrameTitlePaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of an internal frame title pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintInternalFrameTitlePaneBorder
public void paintInternalFrameTitlePaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of an internal frame title pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintLabelBackground
public void paintLabelBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a label.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintLabelBorder
public void paintLabelBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a label.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintListBackground
public void paintListBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a list.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintListBorder
public void paintListBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a list.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintMenuBackground
public void paintMenuBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a menu.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintMenuBarBackground
public void paintMenuBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a menu bar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintMenuBarBorder
public void paintMenuBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a menu bar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintMenuBorder
public void paintMenuBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a menu.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintMenuItemBackground
public void paintMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a menu item.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintMenuItemBorder
public void paintMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a menu item.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintOptionPaneBackground
public void paintOptionPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of an option pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintOptionPaneBorder
public void paintOptionPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of an option pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintPanelBackground
public void paintPanelBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a panel.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintPanelBorder
public void paintPanelBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a panel.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintPasswordFieldBackground
public void paintPasswordFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a password field.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintPasswordFieldBorder
public void paintPasswordFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a password field.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintPopupMenuBackground
public void paintPopupMenuBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a popup menu.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintPopupMenuBorder
public void paintPopupMenuBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a popup menu.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintProgressBarBackground
public void paintProgressBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a progress bar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintProgressBarBackground
public void paintProgressBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the background of a progress bar. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - one of JProgressBar.HORIZONTAL orJProgressBar.VERTICAL
since:
   1.6



paintProgressBarBorder
public void paintProgressBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a progress bar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintProgressBarBorder
public void paintProgressBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the border of a progress bar. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - one of JProgressBar.HORIZONTAL orJProgressBar.VERTICAL
since:
   1.6



paintProgressBarForeground
public void paintProgressBarForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the foreground of a progress bar. is responsible for providing an indication of the progress of the progress bar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - one of JProgressBar.HORIZONTAL orJProgressBar.VERTICAL



paintRadioButtonBackground
public void paintRadioButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a radio button.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintRadioButtonBorder
public void paintRadioButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a radio button.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintRadioButtonMenuItemBackground
public void paintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a radio button menu item.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintRadioButtonMenuItemBorder
public void paintRadioButtonMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a radio button menu item.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintRootPaneBackground
public void paintRootPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a root pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintRootPaneBorder
public void paintRootPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a root pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintScrollBarBackground
public void paintScrollBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a scrollbar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintScrollBarBackground
public void paintScrollBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the background of a scrollbar. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - Orientation of the JScrollBar, one ofJScrollBar.HORIZONTAL orJScrollBar.VERTICAL
since:
   1.6



paintScrollBarBorder
public void paintScrollBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a scrollbar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintScrollBarBorder
public void paintScrollBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the border of a scrollbar. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - Orientation of the JScrollBar, one ofJScrollBar.HORIZONTAL orJScrollBar.VERTICAL
since:
   1.6



paintScrollBarThumbBackground
public void paintScrollBarThumbBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
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 JScrollPane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - Orientation of the JScrollBar, one ofJScrollBar.HORIZONTAL orJScrollBar.VERTICAL



paintScrollBarThumbBorder
public void paintScrollBarThumbBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
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 JScrollPane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - Orientation of the JScrollBar, one ofJScrollBar.HORIZONTAL orJScrollBar.VERTICAL



paintScrollBarTrackBackground
public void paintScrollBarTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the track of a scrollbar. The track contains the thumb.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintScrollBarTrackBackground
public void paintScrollBarTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
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.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - Orientation of the JScrollBar, one ofJScrollBar.HORIZONTAL orJScrollBar.VERTICAL
since:
   1.6



paintScrollBarTrackBorder
public void paintScrollBarTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of the track of a scrollbar. The track contains the thumb.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintScrollBarTrackBorder
public void paintScrollBarTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
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.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - Orientation of the JScrollBar, one ofJScrollBar.HORIZONTAL orJScrollBar.VERTICAL
since:
   1.6



paintScrollPaneBackground
public void paintScrollPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a scroll pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintScrollPaneBorder
public void paintScrollPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a scroll pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSeparatorBackground
public void paintSeparatorBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a separator.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSeparatorBackground
public void paintSeparatorBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the background of a separator. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSeparator.HORIZONTAL orJSeparator.VERTICAL
since:
   1.6



paintSeparatorBorder
public void paintSeparatorBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a separator.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSeparatorBorder
public void paintSeparatorBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the border of a separator. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSeparator.HORIZONTAL orJSeparator.VERTICAL
since:
   1.6



paintSeparatorForeground
public void paintSeparatorForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the foreground of a separator.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSeparator.HORIZONTAL orJSeparator.VERTICAL



paintSliderBackground
public void paintSliderBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a slider.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSliderBackground
public void paintSliderBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the background of a slider. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSlider.HORIZONTAL orJSlider.VERTICAL
since:
   1.6



paintSliderBorder
public void paintSliderBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a slider.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSliderBorder
public void paintSliderBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the border of a slider. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSlider.HORIZONTAL orJSlider.VERTICAL
since:
   1.6



paintSliderThumbBackground
public void paintSliderThumbBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the background of the thumb of a slider.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSlider.HORIZONTAL orJSlider.VERTICAL



paintSliderThumbBorder
public void paintSliderThumbBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the border of the thumb of a slider.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSlider.HORIZONTAL orJSlider.VERTICAL



paintSliderTrackBackground
public void paintSliderTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the track of a slider.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSliderTrackBackground
public void paintSliderTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the background of the track of a slider. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSlider.HORIZONTAL orJSlider.VERTICAL
since:
   1.6



paintSliderTrackBorder
public void paintSliderTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of the track of a slider.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSliderTrackBorder
public void paintSliderTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the border of the track of a slider. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSlider.HORIZONTAL orJSlider.VERTICAL
since:
   1.6



paintSpinnerBackground
public void paintSpinnerBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a spinner.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSpinnerBorder
public void paintSpinnerBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a spinner.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSplitPaneBackground
public void paintSplitPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a split pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSplitPaneBorder
public void paintSplitPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a split pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSplitPaneDividerBackground
public void paintSplitPaneDividerBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the divider of a split pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintSplitPaneDividerBackground
public void paintSplitPaneDividerBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the background of the divider of a split pane. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSplitPane.HORIZONTAL_SPLIT orJSplitPane.VERTICAL_SPLIT
since:
   1.6



paintSplitPaneDividerForeground
public void paintSplitPaneDividerForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the foreground of the divider of a split pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSplitPane.HORIZONTAL_SPLIT orJSplitPane.VERTICAL_SPLIT



paintSplitPaneDragDivider
public void paintSplitPaneDragDivider(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the divider, when the user is dragging the divider, of a split pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JSplitPane.HORIZONTAL_SPLIT orJSplitPane.VERTICAL_SPLIT



paintTabbedPaneBackground
public void paintTabbedPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a tabbed pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTabbedPaneBorder
public void paintTabbedPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a tabbed pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTabbedPaneContentBackground
public void paintTabbedPaneContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the area that contains the content of the selected tab of a tabbed pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTabbedPaneContentBorder
public void paintTabbedPaneContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of the area that contains the content of the selected tab of a tabbed pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTabbedPaneTabAreaBackground
public void paintTabbedPaneTabAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the area behind the tabs of a tabbed pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTabbedPaneTabAreaBackground
public void paintTabbedPaneTabAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
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.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JTabbedPane.TOP,JTabbedPane.LEFT,JTabbedPane.BOTTOM, orJTabbedPane.RIGHT
since:
   1.6



paintTabbedPaneTabAreaBorder
public void paintTabbedPaneTabAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of the area behind the tabs of a tabbed pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTabbedPaneTabAreaBorder
public void paintTabbedPaneTabAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
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.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JTabbedPane.TOP,JTabbedPane.LEFT,JTabbedPane.BOTTOM, orJTabbedPane.RIGHT
since:
   1.6



paintTabbedPaneTabBackground
public void paintTabbedPaneTabBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex)(Code)
Paints the background of a tab of a tabbed pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  tabIndex - Index of tab being painted.



paintTabbedPaneTabBackground
public void paintTabbedPaneTabBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex, int orientation)(Code)
Paints the background of a tab of a tabbed pane. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  tabIndex - Index of tab being painted.
Parameters:
  orientation - One of JTabbedPane.TOP,JTabbedPane.LEFT,JTabbedPane.BOTTOM, orJTabbedPane.RIGHT
since:
   1.6



paintTabbedPaneTabBorder
public void paintTabbedPaneTabBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex)(Code)
Paints the border of a tab of a tabbed pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  tabIndex - Index of tab being painted.



paintTabbedPaneTabBorder
public void paintTabbedPaneTabBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex, int orientation)(Code)
Paints the border of a tab of a tabbed pane. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  tabIndex - Index of tab being painted.
Parameters:
  orientation - One of JTabbedPane.TOP,JTabbedPane.LEFT,JTabbedPane.BOTTOM, orJTabbedPane.RIGHT
since:
   1.6



paintTableBackground
public void paintTableBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a table.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTableBorder
public void paintTableBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a table.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTableHeaderBackground
public void paintTableHeaderBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the header of a table.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTableHeaderBorder
public void paintTableHeaderBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of the header of a table.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTextAreaBackground
public void paintTextAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a text area.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTextAreaBorder
public void paintTextAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a text area.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTextFieldBackground
public void paintTextFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a text field.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTextFieldBorder
public void paintTextFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a text field.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTextPaneBackground
public void paintTextPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a text pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTextPaneBorder
public void paintTextPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a text pane.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToggleButtonBackground
public void paintToggleButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a toggle button.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToggleButtonBorder
public void paintToggleButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a toggle button.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToolBarBackground
public void paintToolBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a tool bar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToolBarBackground
public void paintToolBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the background of a tool bar. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JToolBar.HORIZONTAL orJToolBar.VERTICAL
since:
   1.6



paintToolBarBorder
public void paintToolBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a tool bar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToolBarBorder
public void paintToolBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the border of a tool bar. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JToolBar.HORIZONTAL orJToolBar.VERTICAL
since:
   1.6



paintToolBarContentBackground
public void paintToolBarContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the tool bar's content area.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToolBarContentBackground
public void paintToolBarContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the background of the tool bar's content area. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JToolBar.HORIZONTAL orJToolBar.VERTICAL
since:
   1.6



paintToolBarContentBorder
public void paintToolBarContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of the content area of a tool bar.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToolBarContentBorder
public void paintToolBarContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
Paints the border of the content area of a tool bar. This implementation invokes the method of the same name without the orientation.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JToolBar.HORIZONTAL orJToolBar.VERTICAL
since:
   1.6



paintToolBarDragWindowBackground
public void paintToolBarDragWindowBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the window containing the tool bar when it has been detached from its primary frame.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToolBarDragWindowBackground
public void paintToolBarDragWindowBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
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.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JToolBar.HORIZONTAL orJToolBar.VERTICAL
since:
   1.6



paintToolBarDragWindowBorder
public void paintToolBarDragWindowBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of the window containing the tool bar when it has been detached from it's primary frame.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToolBarDragWindowBorder
public void paintToolBarDragWindowBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation)(Code)
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.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to
Parameters:
  orientation - One of JToolBar.HORIZONTAL orJToolBar.VERTICAL
since:
   1.6



paintToolTipBackground
public void paintToolTipBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a tool tip.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintToolTipBorder
public void paintToolTipBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a tool tip.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTreeBackground
public void paintTreeBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of a tree.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTreeBorder
public void paintTreeBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a tree.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTreeCellBackground
public void paintTreeCellBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the row containing a cell in a tree.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTreeCellBorder
public void paintTreeCellBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of the row containing a cell in a tree.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintTreeCellFocus
public void paintTreeCellFocus(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the focus indicator for a cell in a tree when it has focus.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintViewportBackground
public void paintViewportBackground(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the background of the viewport.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



paintViewportBorder
public void paintViewportBorder(SynthContext context, Graphics g, int x, int y, int w, int h)(Code)
Paints the border of a viewport.
Parameters:
  context - SynthContext identifying the JComponent andRegion to paint to
Parameters:
  g - Graphics to paint to
Parameters:
  x - X coordinate of the area to paint to
Parameters:
  y - Y coordinate of the area to paint to
Parameters:
  w - Width of the area to paint to
Parameters:
  h - Height of the area to paint to



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.