This package contains classes and interfaces used in the definition of a pluggable look-and-feel (hence the acronym "plaf"). It defines abstract UI delegate classes for Swing components. Typically, only look-and-feel developers and advanced component developers need to use this package. Figure 28-1 shows the class hierarchy of this package. See Chapter 3, "Swing Programming Topics", for further discussion of Swing's pluggable look-and-feel architecture.
The javax.swing.plaf.basic package contains classes that extend the UI delegate classes of this package to create a basic pluggable look-and-feel UI framework. The classes in javax.swing.plaf.metal extend the classes of javax.swing.plaf.basic to implement the default Java look-and-feel. The classes in javax.swing.plaf.multi also extend the abstract classes of javax.swing.plaf to produce a multiplexing look-and-feel that combines a primary look-and-feel with one or more auxiliary look-and-feel implementations. These various subpackages of javax.swing.plaf are not documented in this book because they are very infrequently used and because they are straightforward implementations of the classes in this package that do not define any new public APIs.
BorderUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
This class implements the UIResource marker interface and serves as a wrapper around an existing javax.swing.border.Border object. It differs from other UIResource implementations in this package, in that it does not subclass an existing resource type. In addition, this class includes inner classes that provide UIResource versions of the standard Swing border classes. Several static methods exist for obtaining shared instances of commonly used UIResource borders.
public class BorderUIResource implements javax.swing.border.Border, Serializable, UIResource { | ||
// | Public Constructors | |
public BorderUIResource (javax.swing.border.Border delegate); | ||
// | Inner Classes | |
; | ||
; | ||
; | ||
; | ||
; | ||
; | ||
; | ||
// | Public Class Methods | |
public static javax.swing.border.Border getBlackLineBorderUIResource (); | ||
public static javax.swing.border.Border getEtchedBorderUIResource (); | ||
public static javax.swing.border.Border getLoweredBevelBorderUIResource (); | ||
public static javax.swing.border.Border getRaisedBevelBorderUIResource (); | ||
// | Methods Implementing Border | |
public java.awt.Insets getBorderInsets (Component c); | ||
public boolean isBorderOpaque (); | ||
public void paintBorder (Component c, java.awt.Graphics g, int x, int y, int width, int height); | ||
} |
BorderUIResource.BevelBorderUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of BevelBorder that implements the UIResource marker interface.
public static class BorderUIResource.BevelBorderUIResource extends javax.swing.border.BevelBorder implements UIResource { | ||
// | Public Constructors | |
public BevelBorderUIResource (int bevelType); | ||
public BevelBorderUIResource (int bevelType, java.awt.Color highlight, java.awt.Color shadow); | ||
public BevelBorderUIResource (int bevelType, java.awt.Color highlightOuter, java.awt.Color highlightInner, java.awt.Color shadowOuter, java.awt.Color shadowInner); | ||
} |
BorderUIResource.CompoundBorderUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of CompoundBorder that implements the UIResource marker interface.
public static class BorderUIResource.CompoundBorderUIResource extends javax.swing.border.CompoundBorder implements UIResource { | ||
// | Public Constructors | |
public CompoundBorderUIResource (javax.swing.border.Border outsideBorder, javax.swing.border.Border insideBorder); | ||
} |
BorderUIResource.EmptyBorderUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of EmptyBorder that implements the UIResource marker interface.
public static class BorderUIResource.EmptyBorderUIResource extends javax.swing.border.EmptyBorder implements UIResource { | ||
// | Public Constructors | |
public EmptyBorderUIResource (java.awt.Insets insets); | ||
public EmptyBorderUIResource (int top, int left, int bottom, int right); | ||
} |
BorderUIResource.EtchedBorderUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of EtchedBorder that implements the UIResource marker interface.
public static class BorderUIResource.EtchedBorderUIResource extends javax.swing.border.EtchedBorder implements UIResource { | ||
// | Public Constructors | |
public EtchedBorderUIResource (); | ||
public EtchedBorderUIResource (int etchType); | ||
public EtchedBorderUIResource (java.awt.Color highlight, java.awt.Color shadow); | ||
public EtchedBorderUIResource (int etchType, java.awt.Color highlight, java.awt.Color shadow); | ||
} |
BorderUIResource.LineBorderUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of LineBorder that implements the UIResource marker interface.
public static class BorderUIResource.LineBorderUIResource extends javax.swing.border.LineBorder implements UIResource { | ||
// | Public Constructors | |
public LineBorderUIResource (java.awt.Color color); | ||
public LineBorderUIResource (java.awt.Color color, int thickness); | ||
} |
BorderUIResource.MatteBorderUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of MatteBorder that implements the UIResource marker interface.
public static class BorderUIResource.MatteBorderUIResource extends javax.swing.border.MatteBorder implements UIResource { | ||
// | Public Constructors | |
public MatteBorderUIResource (Icon tileIcon); | ||
public MatteBorderUIResource (int top, int left, int bottom, int right, Icon tileIcon); | ||
public MatteBorderUIResource (int top, int left, int bottom, int right, java.awt.Color color); | ||
} |
BorderUIResource.TitledBorderUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of TitledBorder that implements the UIResource marker interface.
public static class BorderUIResource.TitledBorderUIResource extends javax.swing.border.TitledBorder implements UIResource { | ||
// | Public Constructors | |
public TitledBorderUIResource (javax.swing.border.Border border); | ||
public TitledBorderUIResource (String title); | ||
public TitledBorderUIResource (javax.swing.border.Border border, String title); | ||
public TitledBorderUIResource (javax.swing.border.Border border, String title, int titleJustification, int titlePosition); | ||
public TitledBorderUIResource (javax.swing.border.Border border, String title, int titleJustification, int titlePosition, java.awt.Font titleFont); | ||
public TitledBorderUIResource (javax.swing.border.Border border, String title, int titleJustification, int titlePosition, java.awt.Font titleFont, java.awt.Color titleColor); | ||
} |
ButtonUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JButton.
public abstract class ButtonUI extends ComponentUI { | ||
// | Public Constructors | |
public ButtonUI (); | ||
} |
Subclasses: MenuItemUI
Passed To: AbstractButton.setUI()
Returned By: AbstractButton.getUI()
ColorChooserUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JColorChooser.
public abstract class ColorChooserUI extends ComponentUI { | ||
// | Public Constructors | |
public ColorChooserUI (); | ||
} |
Passed To: JColorChooser.setUI()
Returned By: JColorChooser.getUI()
ColorUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of java.awt.Color that implements the UIResource marker interface.
public class ColorUIResource extends java.awt.Color implements UIResource { | ||
// | Public Constructors | |
public ColorUIResource (java.awt.Color c); | ||
public ColorUIResource (int rgb); | ||
public ColorUIResource (float r, float g, float b); | ||
public ColorUIResource (int r, int g, int b); | ||
} |
ComboBoxUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JComboBox.
public abstract class ComboBoxUI extends ComponentUI { | ||
// | Public Constructors | |
public ComboBoxUI (); | ||
// | Public Instance Methods | |
public abstract boolean isFocusTraversable (JComboBox c); | ||
public abstract boolean isPopupVisible (JComboBox c); | ||
public abstract void setPopupVisible (JComboBox c, boolean v); | ||
} |
Passed To: JComboBox.setUI()
Returned By: JComboBox.getUI()
ComponentUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JComponent.
public abstract class ComponentUI { | ||
// | Public Constructors | |
public ComponentUI (); | ||
// | Public Class Methods | |
public static ComponentUI createUI (JComponent c); | ||
// | Public Instance Methods | |
public boolean contains (JComponent c, int x, int y); | ||
public Accessible getAccessibleChild (JComponent c, int i); | ||
public int getAccessibleChildrenCount (JComponent c); | ||
public java.awt.Dimension getMaximumSize (JComponent c); | ||
public java.awt.Dimension getMinimumSize (JComponent c); | ||
public java.awt.Dimension getPreferredSize (JComponent c); | constant | |
public void installUI (JComponent c); | empty | |
public void paint (java.awt.Graphics g, JComponent c); | empty | |
public void uninstallUI (JComponent c); | empty | |
public void update (java.awt.Graphics g, JComponent c); | ||
} |
Subclasses: Too many classes to list.
Passed To: JComponent.setUI()
Returned By: UIDefaults.getUI(), UIManager.getUI(), ComponentUI.createUI()
Type Of: JComponent.ui
DesktopIconUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JDesktopIcon.
public abstract class DesktopIconUI extends ComponentUI { | ||
// | Public Constructors | |
public DesktopIconUI (); | ||
} |
Passed To: JInternalFrame.JDesktopIcon.setUI()
Returned By: JInternalFrame.JDesktopIcon.getUI()
DesktopPaneUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JDesktopPane.
public abstract class DesktopPaneUI extends ComponentUI { | ||
// | Public Constructors | |
public DesktopPaneUI (); | ||
} |
Passed To: JDesktopPane.setUI()
Returned By: JDesktopPane.getUI()
DimensionUIResource | Java 1.2 | |
|
||
javax.swing.plaf | cloneable serializable |
A trivial subclass of java.awt.Dimension that implements the UIResource marker interface.
public class DimensionUIResource extends java.awt.Dimension implements UIResource { | ||
// | Public Constructors | |
public DimensionUIResource (int width, int height); | ||
} |
FileChooserUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JFileChooser.
public abstract class FileChooserUI extends ComponentUI { | ||
// | Public Constructors | |
public FileChooserUI (); | ||
// | Public Instance Methods | |
public abstract void ensureFileIsVisible (JFileChooser fc, java.io.File f); | ||
public abstract javax.swing.filechooser.FileFilter getAcceptAllFileFilter (JFileChooser fc); | ||
public abstract String getApproveButtonText (JFileChooser fc); | ||
public abstract String getDialogTitle (JFileChooser fc); | ||
public abstract javax.swing.filechooser.FileView getFileView (JFileChooser fc); | ||
public abstract void rescanCurrentDirectory (JFileChooser fc); | ||
} |
Returned By: JFileChooser.getUI()
FontUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of java.awt.Font that implements the UIResource marker interface.
public class FontUIResource extends java.awt.Font implements UIResource { | ||
// | Public Constructors | |
public FontUIResource (java.awt.Font font); | ||
public FontUIResource (String name, int style, int size); | ||
} |
IconUIResource | Java 1.2 | |
|
||
javax.swing.plaf | serializable |
A trivial subclass of javax.swing.Icon that implements the UIResource marker interface.
public class IconUIResource implements Icon, Serializable, UIResource { | ||
// | Public Constructors | |
public IconUIResource (Icon delegate); | ||
// | Methods Implementing Icon | |
public int getIconHeight (); | ||
public int getIconWidth (); | ||
public void paintIcon (Component c, java.awt.Graphics g, int x, int y); | ||
} |
InsetsUIResource | Java 1.2 | |
|
||
javax.swing.plaf | cloneable serializable |
A trivial subclass of java.awt.Insets that implements the UIResource marker interface.
public class InsetsUIResource extends java.awt.Insets implements UIResource { | ||
// | Public Constructors | |
public InsetsUIResource (int top, int left, int bottom, int right); | ||
} |
InternalFrameUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JInternalFrame.
public abstract class InternalFrameUI extends ComponentUI { | ||
// | Public Constructors | |
public InternalFrameUI (); | ||
} |
Passed To: JInternalFrame.setUI()
Returned By: JInternalFrame.getUI()
LabelUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JLabel.
public abstract class LabelUI extends ComponentUI { | ||
// | Public Constructors | |
public LabelUI (); | ||
} |
Passed To: JLabel.setUI()
Returned By: JLabel.getUI()
ListUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JList.
public abstract class ListUI extends ComponentUI { | ||
// | Public Constructors | |
public ListUI (); | ||
// | Public Instance Methods | |
public abstract java.awt.Rectangle getCellBounds (JList list, int index1, int index2); | ||
public abstract java.awt.Point indexToLocation (JList list, int index); | ||
public abstract int locationToIndex (JList list, java.awt.Point location); | ||
} |
Passed To: JList.setUI()
Returned By: JList.getUI()
MenuBarUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JMenuBar.
public abstract class MenuBarUI extends ComponentUI { | ||
// | Public Constructors | |
public MenuBarUI (); | ||
} |
Passed To: JMenuBar.setUI()
Returned By: JMenuBar.getUI()
MenuItemUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JMenuItem.
public abstract class MenuItemUI extends ButtonUI { | ||
// | Public Constructors | |
public MenuItemUI (); | ||
} |
Passed To: JMenuItem.setUI()
OptionPaneUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JOptionPane.
public abstract class OptionPaneUI extends ComponentUI { | ||
// | Public Constructors | |
public OptionPaneUI (); | ||
// | Public Instance Methods | |
public abstract boolean containsCustomComponents (JOptionPane op); | ||
public abstract void selectInitialValue (JOptionPane op); | ||
} |
Passed To: JOptionPane.setUI()
Returned By: JOptionPane.getUI()
PanelUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JPanel.
public abstract class PanelUI extends ComponentUI { | ||
// | Public Constructors | |
public PanelUI (); | ||
} |
PopupMenuUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JPopupMenu.
public abstract class PopupMenuUI extends ComponentUI { | ||
// | Public Constructors | |
public PopupMenuUI (); | ||
} |
Passed To: JPopupMenu.setUI()
Returned By: JPopupMenu.getUI()
ProgressBarUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JProgressBar.
public abstract class ProgressBarUI extends ComponentUI { | ||
// | Public Constructors | |
public ProgressBarUI (); | ||
} |
Passed To: JProgressBar.setUI()
Returned By: JProgressBar.getUI()
ScrollBarUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JScrollBar.
public abstract class ScrollBarUI extends ComponentUI { | ||
// | Public Constructors | |
public ScrollBarUI (); | ||
} |
Returned By: JScrollBar.getUI()
ScrollPaneUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JScrollPane.
public abstract class ScrollPaneUI extends ComponentUI { | ||
// | Public Constructors | |
public ScrollPaneUI (); | ||
} |
Passed To: JScrollPane.setUI()
Returned By: JScrollPane.getUI()
SeparatorUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JSeparator.
public abstract class SeparatorUI extends ComponentUI { | ||
// | Public Constructors | |
public SeparatorUI (); | ||
} |
Passed To: JSeparator.setUI()
Returned By: JSeparator.getUI()
SliderUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JSlider.
public abstract class SliderUI extends ComponentUI { | ||
// | Public Constructors | |
public SliderUI (); | ||
} |
Passed To: JSlider.setUI()
Returned By: JSlider.getUI()
SplitPaneUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JSplitPane.
public abstract class SplitPaneUI extends ComponentUI { | ||
// | Public Constructors | |
public SplitPaneUI (); | ||
// | Public Instance Methods | |
public abstract void finishedPaintingChildren (JSplitPane jc, java.awt.Graphics g); | ||
public abstract int getDividerLocation (JSplitPane jc); | ||
public abstract int getMaximumDividerLocation (JSplitPane jc); | ||
public abstract int getMinimumDividerLocation (JSplitPane jc); | ||
public abstract void resetToPreferredSizes (JSplitPane jc); | ||
public abstract void setDividerLocation (JSplitPane jc, int location); | ||
} |
Passed To: JSplitPane.setUI()
Returned By: JSplitPane.getUI()
TabbedPaneUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JTabbedPane.
public abstract class TabbedPaneUI extends ComponentUI { | ||
// | Public Constructors | |
public TabbedPaneUI (); | ||
// | Public Instance Methods | |
public abstract java.awt.Rectangle getTabBounds (JTabbedPane pane, int index); | ||
public abstract int getTabRunCount (JTabbedPane pane); | ||
public abstract int tabForCoordinate (JTabbedPane pane, int x, int y); | ||
} |
Passed To: JTabbedPane.setUI()
Returned By: JTabbedPane.getUI()
TableHeaderUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JTableHeader.
public abstract class TableHeaderUI extends ComponentUI { | ||
// | Public Constructors | |
public TableHeaderUI (); | ||
} |
Passed To: javax.swing.table.JTableHeader.setUI()
Returned By: javax.swing.table.JTableHeader.getUI()
TableUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JTable.
public abstract class TableUI extends ComponentUI { | ||
// | Public Constructors | |
public TableUI (); | ||
} |
Passed To: JTable.setUI()
Returned By: JTable.getUI()
TextUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JTextComponent.
public abstract class TextUI extends ComponentUI { | ||
// | Public Constructors | |
public TextUI (); | ||
// | Public Instance Methods | |
public abstract void damageRange (javax.swing.text.JTextComponent t, int p0, int p1); | ||
public abstract void damageRange (javax.swing.text.JTextComponent t, int p0, int p1, javax.swing.text.Position.Bias firstBias, javax.swing.text.Position.Bias secondBias); | ||
public abstract javax.swing.text.EditorKit getEditorKit (javax.swing.text.JTextComponent t); | ||
public abstract int getNextVisualPositionFrom (javax.swing.text.JTextComponent t, int pos, javax.swing.text.Position.Bias b, int direction, javax.swing.text.Position.Bias[ ] biasRet) throws javax.swing.text.BadLocationException; | ||
public abstract javax.swing.text.View getRootView (javax.swing.text.JTextComponent t); | ||
public abstract java.awt.Rectangle modelToView (javax.swing.text.JTextComponent t, int pos) throws javax.swing.text.BadLocationException; | ||
public abstract java.awt.Rectangle modelToView (javax.swing.text.JTextComponent t, int pos, javax.swing.text.Position.Bias bias) throws javax.swing.text.BadLocationException; | ||
public abstract int viewToModel (javax.swing.text.JTextComponent t, java.awt.Point pt); | ||
public abstract int viewToModel (javax.swing.text.JTextComponent t, java.awt.Point pt, javax.swing.text.Position.Bias[ ] biasReturn); | ||
} |
Passed To: javax.swing.text.JTextComponent.setUI()
Returned By: javax.swing.text.JTextComponent.getUI()
ToolBarUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JToolBar.
public abstract class ToolBarUI extends ComponentUI { | ||
// | Public Constructors | |
public ToolBarUI (); | ||
} |
Passed To: JToolBar.setUI()
Returned By: JToolBar.getUI()
ToolTipUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JToolTip.
public abstract class ToolTipUI extends ComponentUI { | ||
// | Public Constructors | |
public ToolTipUI (); | ||
} |
Returned By: JToolTip.getUI()
TreeUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JTree.
public abstract class TreeUI extends ComponentUI { | ||
// | Public Constructors | |
public TreeUI (); | ||
// | Public Instance Methods | |
public abstract void cancelEditing (JTree tree); | ||
public abstract javax.swing.tree.TreePath getClosestPathForLocation (JTree tree, int x, int y); | ||
public abstract javax.swing.tree.TreePath getEditingPath (JTree tree); | ||
public abstract java.awt.Rectangle getPathBounds (JTree tree, javax.swing.tree.TreePath path); | ||
public abstract javax.swing.tree.TreePath getPathForRow (JTree tree, int row); | ||
public abstract int getRowCount (JTree tree); | ||
public abstract int getRowForPath (JTree tree, javax.swing.tree.TreePath path); | ||
public abstract boolean isEditing (JTree tree); | ||
public abstract void startEditingAtPath (JTree tree, javax.swing.tree.TreePath path); | ||
public abstract boolean stopEditing (JTree tree); | ||
} |
Passed To: JTree.setUI()
Returned By: JTree.getUI()
UIResource | Java 1.2 | |
|
||
javax.swing.plaf |
This marker interface defines no methods; it is used to distinguish user-interface property values specified by a UI delegate from property values specified explicitly by an application. Only programmers writing custom look-and-feels or custom UI delegate objects need to use this interface. Application-level code never uses it.
Any component properties set by the installUI() method of a UI delegate object should be set to objects that implement the UIResource interface. This allows the uninstallUI() method to determine which properties were explicitly set by the application and leave these properties unchanged.
The requirement for property values that implement UIResource means that the javax.swing.plaf package contains a number of trivial wrapper classes that extend common resource types such as java.awt.Color, java.awt.Font, and so on. These wrapper classes add no new functionality but exist simply to implement UIResource.
public abstract interface UIResource { | ||
} |
Implementations: DefaultListCellRenderer.UIResource, JScrollPane.ScrollBar, ScrollPaneLayout.UIResource, BorderUIResource, BorderUIResource.BevelBorderUIResource, BorderUIResource.CompoundBorderUIResource, BorderUIResource.EmptyBorderUIResource, BorderUIResource.EtchedBorderUIResource, BorderUIResource.LineBorderUIResource, BorderUIResource.MatteBorderUIResource, BorderUIResource.TitledBorderUIResource, ColorUIResource, DimensionUIResource, FontUIResource, IconUIResource, InsetsUIResource, javax.swing.table.DefaultTableCellRenderer.UIResource
ViewportUI | Java 1.2 | |
|
||
javax.swing.plaf |
This abstract class defines the methods that must be implemented by a pluggable look-and-feel delegate for JViewport.
public abstract class ViewportUI extends ComponentUI { | ||
// | Public Constructors | |
public ViewportUI (); | ||
} |
Copyright © 2001 O'Reilly & Associates. All rights reserved.