| Package | Description |
|---|---|
| java.applet |
Provides the classes necessary to create an applet and the classes an applet uses to communicate with its applet context.
|
| java.awt |
Contains all of the classes for creating user interfaces and for painting graphics and images.
|
| javax.accessibility |
Defines a contract between user-interface components and an assistive technology that provides access to those components.
|
| javax.imageio |
The main package of the Java Image I/O API.
|
| javax.swing |
Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.
|
| javax.swing.border |
Provides classes and interface for drawing specialized borders around a Swing component.
|
| javax.swing.plaf |
Provides one interface and many abstract classes that Swing uses to provide its pluggable look-and-feel capabilities.
|
| javax.swing.plaf.basic |
Provides user interface objects built according to the Basic look and feel.
|
| javax.swing.plaf.metal |
Provides user interface objects built according to the Java look and feel (once codenamed
Metal), which is the default look and feel.
|
| javax.swing.plaf.multi |
Provides user interface objects that combine two or more look and feels.
|
| javax.swing.plaf.nimbus |
Provides user interface objects built according to the cross-platform Nimbus look and feel.
|
| javax.swing.plaf.synth |
Synth is a skinnable look and feel in which all painting is delegated.
|
| javax.swing.table |
Provides classes and interfaces for dealing with
javax.swing.JTable.
|
| javax.swing.text |
Provides classes and interfaces that deal with editable and noneditable text components.
|
| javax.swing.tree |
Provides classes and interfaces for dealing with
javax.swing.JTree.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Applet.resize(Dimension
Requests that this applet be resized.
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
Toolkit.getBestCursorSize(int preferredWidth, int preferredHeight)
Returns the supported cursor dimension which is closest to the desired sizes.
|
Dimension |
Container.getMaximumSize()
Returns the maximum size of this container.
|
Dimension |
Component.getMaximumSize()
Gets the maximum size of this component.
|
Dimension |
TextField.getMinimumSize()
Gets the minimum dimensions for this text field.
|
Dimension |
TextArea.getMinimumSize()
Determines the minimum size of this text area.
|
Dimension |
List.getMinimumSize()
Determines the minimum size of this scrolling list.
|
Dimension |
Container.getMinimumSize()
Returns the minimum size of this container.
|
Dimension |
Component.getMinimumSize()
Gets the minimum size of this component.
|
Dimension |
TextField.getMinimumSize(int columns)
Gets the minimum dimensions for a text field with the specified number of columns.
|
Dimension |
List.getMinimumSize(int rows)
Gets the minimum dimensions for a list with the specified number of rows.
|
Dimension |
TextArea.getMinimumSize(int rows, int columns)
Determines the minimum size of a text area with the specified number of rows and columns.
|
protected Dimension |
GridBagLayout.getMinSize(Container
Figures out the minimum size of the master based on the information from
getLayoutInfo.
|
protected Dimension |
GridBagLayout.GetMinSize(Container
This method is obsolete and supplied for backwards compatibility only; new code should call
getMinSize instead.
|
abstract Dimension |
PrintJob.getPageDimension()
Returns the dimensions of the page in pixels.
|
Dimension |
TextField.getPreferredSize()
Gets the preferred size of this text field.
|
Dimension |
TextArea.getPreferredSize()
Determines the preferred size of this text area.
|
Dimension |
List.getPreferredSize()
Gets the preferred size of this scrolling list.
|
Dimension |
Container.getPreferredSize()
Returns the preferred size of this container.
|
Dimension |
Component.getPreferredSize()
Gets the preferred size of this component.
|
Dimension |
TextField.getPreferredSize(int columns)
Gets the preferred size of this text field with the specified number of columns.
|
Dimension |
List.getPreferredSize(int rows)
Gets the preferred dimensions for a list with the specified number of rows.
|
Dimension |
TextArea.getPreferredSize(int rows, int columns)
Determines the preferred size of a text area with the specified number of rows and columns.
|
abstract Dimension |
Toolkit.getScreenSize()
Gets the size of the screen.
|
Dimension |
Dimension.getSize()
Gets the size of this
Dimension object.
|
Dimension |
MenuComponent.AccessibleAWTMenuComponent.getSize()
Returns the size of this object in the form of a
Dimension object.
|
Dimension |
Rectangle.getSize()
Gets the size of this
Rectangle, represented by the returned
Dimension.
|
Dimension |
SplashScreen.getSize()
Returns the size of the splash screen window as a
Dimension.
|
Dimension |
List.AccessibleAWTList.AccessibleAWTListChild.getSize()
Returns the size of this object in the form of a Dimension object.
|
Dimension |
Component.getSize()
Returns the size of this component in the form of a
Dimension object.
|
Dimension |
Component.AccessibleAWTComponent.getSize()
Returns the size of this object in the form of a
Dimension object.
|
Dimension |
TrayIcon.getSize()
Returns the size, in pixels, of the space that the tray icon occupies in the system tray.
|
Dimension |
Component.getSize(Dimension
Stores the width/height of this component into "return value"
rv and return
rv.
|
Dimension |
SystemTray.getTrayIconSize()
Returns the size, in pixels, of the space that a tray icon will occupy in the system tray.
|
Dimension |
ScrollPane.getViewportSize()
Returns the current size of the scroll pane's view port.
|
Dimension |
CardLayout.maximumLayoutSize(Container
Returns the maximum dimensions for this layout given the components in the specified target container.
|
Dimension |
LayoutManager2.maximumLayoutSize(Container
Calculates the maximum size dimensions for the specified container, given the components it contains.
|
Dimension |
BorderLayout.maximumLayoutSize(Container
Returns the maximum dimensions for this layout given the components in the specified target container.
|
Dimension |
GridBagLayout.maximumLayoutSize(Container
Returns the maximum dimensions for this layout given the components in the specified target container.
|
Dimension |
CardLayout.minimumLayoutSize(Container
Calculates the minimum size for the specified panel.
|
Dimension |
FlowLayout.minimumLayoutSize(Container
Returns the minimum dimensions needed to layout the
visible components contained in the specified target container.
|
Dimension |
BorderLayout.minimumLayoutSize(Container
Determines the minimum size of the
target container using this layout manager.
|
Dimension |
GridBagLayout.minimumLayoutSize(Container
Determines the minimum size of the
parent container using this grid bag layout.
|
Dimension |
GridLayout.minimumLayoutSize(Container
Determines the minimum size of the container argument using this grid layout.
|
Dimension |
LayoutManager.minimumLayoutSize(Container
Calculates the minimum size dimensions for the specified container, given the components it contains.
|
Dimension |
TextField.minimumSize()
Deprecated.
As of JDK version 1.1, replaced by
getMinimumSize().
|
Dimension |
TextArea.minimumSize()
Deprecated.
As of JDK version 1.1, replaced by
getMinimumSize().
|
Dimension |
List.minimumSize()
Deprecated.
As of JDK version 1.1, replaced by
getMinimumSize().
|
Dimension |
Container.minimumSize()
Deprecated.
As of JDK version 1.1, replaced by
getMinimumSize().
|
Dimension |
Component.minimumSize()
Deprecated.
As of JDK version 1.1, replaced by
getMinimumSize().
|
Dimension |
TextField.minimumSize(int columns)
Deprecated.
As of JDK version 1.1, replaced by
getMinimumSize(int).
|
Dimension |
List.minimumSize(int rows)
Deprecated.
As of JDK version 1.1, replaced by
getMinimumSize(int).
|
Dimension |
TextArea.minimumSize(int rows, int columns)
Deprecated.
As of JDK version 1.1, replaced by
getMinimumSize(int, int).
|
Dimension |
CardLayout.preferredLayoutSize(Container
Determines the preferred size of the container argument using this card layout.
|
Dimension |
FlowLayout.preferredLayoutSize(Container
Returns the preferred dimensions for this layout given the
visible components in the specified target container.
|
Dimension |
BorderLayout.preferredLayoutSize(Container
Determines the preferred size of the
target container using this layout manager, based on the components in the container.
|
Dimension |
GridBagLayout.preferredLayoutSize(Container
Determines the preferred size of the
parent container using this grid bag layout.
|
Dimension |
GridLayout.preferredLayoutSize(Container
Determines the preferred size of the container argument using this grid layout.
|
Dimension |
LayoutManager.preferredLayoutSize(Container
Calculates the preferred size dimensions for the specified container, given the components it contains.
|
Dimension |
TextField.preferredSize()
Deprecated.
As of JDK version 1.1, replaced by
getPreferredSize().
|
Dimension |
TextArea.preferredSize()
Deprecated.
As of JDK version 1.1, replaced by
getPreferredSize().
|
Dimension |
List.preferredSize()
Deprecated.
As of JDK version 1.1, replaced by
getPreferredSize().
|
Dimension |
Container.preferredSize()
Deprecated.
As of JDK version 1.1, replaced by
getPreferredSize().
|
Dimension |
Component.preferredSize()
Deprecated.
As of JDK version 1.1, replaced by
getPreferredSize().
|
Dimension |
TextField.preferredSize(int columns)
Deprecated.
As of JDK version 1.1, replaced by
getPreferredSize(int).
|
Dimension |
List.preferredSize(int rows)
Deprecated.
As of JDK version 1.1, replaced by
getPreferredSize(int).
|
Dimension |
TextArea.preferredSize(int rows, int columns)
Deprecated.
As of JDK version 1.1, replaced by
getPreferredSize(int, int).
|
Dimension |
Component.size()
Deprecated.
As of JDK version 1.1, replaced by
getSize().
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
Component.getSize(Dimension
Stores the width/height of this component into "return value"
rv and return
rv.
|
void |
Component.resize(Dimension
Deprecated.
As of JDK version 1.1, replaced by
setSize(Dimension).
|
void |
Component.setMaximumSize(Dimension
Sets the maximum size of this component to a constant value.
|
void |
Window.setMinimumSize(Dimension
Sets the minimum size of this window to a constant value.
|
void |
Component.setMinimumSize(Dimension
Sets the minimum size of this component to a constant value.
|
void |
Component.setPreferredSize(Dimension
Sets the preferred size of this component to a constant value.
|
void |
Dimension.setSize(Dimension
Sets the size of this
Dimension object to the specified size.
|
void |
Window.setSize(Dimension
Resizes this component so that it has width
d.width and height
d.height.
|
void |
MenuComponent.AccessibleAWTMenuComponent.setSize(Dimension
Resizes this object.
|
void |
Rectangle.setSize(Dimension
Sets the size of this
Rectangle to match the specified
Dimension.
|
void |
List.AccessibleAWTList.AccessibleAWTListChild.setSize(Dimension
Resizes this object so that it has width and height.
|
void |
Component.setSize(Dimension
Resizes this component so that it has width
d.width and height
d.height.
|
void |
Component.AccessibleAWTComponent.setSize(Dimension
Resizes this object so that it has width and height.
|
| Constructor and Description | |
|---|---|
Dimension(Dimension
Creates an instance of
Dimension whose width and height are the same as for the specified dimension.
|
|
Rectangle(Dimension
Constructs a new
Rectangle whose top left corner is (0, 0) and whose width and height are specified by the
Dimension argument.
|
|
Rectangle(Point
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
AccessibleComponent.getSize()
Returns the size of this object in the form of a Dimension object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AccessibleComponent.setSize(Dimension
Resizes this object so that it has width and height.
|
| Modifier and Type | Field and Description |
|---|---|
protected Dimension |
ImageWriteParam.preferredTileSizes
An array of preferred tile size range pairs.
|
protected Dimension |
ImageReadParam.sourceRenderSize
The desired rendering width and height of the source, if
canSetSourceRenderSize is
true, or
null.
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
ImageWriter.getPreferredThumbnailSizes(ImageTypeSpecifier
Returns an array of
Dimensions indicating the legal size ranges for thumbnail images as they will be encoded in the output file or stream.
|
Dimension |
ImageWriteParam.getPreferredTileSizes()
Returns an array of
Dimensions indicating the legal size ranges for tiles as they will be encoded in the output file or stream.
|
Dimension |
ImageReadParam.getSourceRenderSize()
Returns the width and height of the source image as it will be rendered during decoding, if they have been set via the
setSourceRenderSize method.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ImageReadParam.setSourceRenderSize(Dimension
If the image is able to be rendered at an arbitrary size, sets the source width and height to the supplied values.
|
| Modifier and Type | Field and Description |
|---|---|
protected Dimension |
JTable.preferredViewportSize
Used by the
Scrollable interface to determine the initial visible area.
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
UIDefaults.getDimension(Object
If the value of
key is a
Dimension return it, otherwise return
null.
|
static Dimension |
UIManager.getDimension(Object
Returns a dimension from the defaults.
|
Dimension |
UIDefaults.getDimension(Object
If the value of
key for the given
Locale is a
Dimension return it, otherwise return
null.
|
static Dimension |
UIManager.getDimension(Object
Returns a dimension from the defaults that is appropriate for the given locale.
|
Dimension |
RepaintManager.getDoubleBufferMaximumSize()
Returns the maximum double buffer size.
|
Dimension |
JViewport.getExtentSize()
Returns the size of the visible part of the view in view coordinates.
|
Dimension |
JTable.getIntercellSpacing()
Returns the horizontal and vertical space between cells.
|
Dimension |
JScrollBar.getMaximumSize()
The scrollbar is flexible along it's scrolling axis and rigid along the other axis.
|
Dimension |
JToolBar.Separator.getMaximumSize()
Returns the maximum size for the separator.
|
Dimension |
JComponent.getMaximumSize()
If the maximum size has been set to a non-
null value just returns it.
|
Dimension |
JScrollBar.getMinimumSize()
The scrollbar is flexible along it's scrolling axis and rigid along the other axis.
|
Dimension |
JToolBar.Separator.getMinimumSize()
Returns the minimum size for the separator.
|
Dimension |
JComponent.getMinimumSize()
If the minimum size has been set to a non-
null value just returns it.
|
Dimension |
Scrollable.getPreferredScrollableViewportSize()
Returns the preferred size of the viewport for a view component.
|
Dimension |
JLayer.getPreferredScrollableViewportSize()
Returns the preferred size of the viewport for a view component.
|
Dimension |
JTree.getPreferredScrollableViewportSize()
Returns the preferred display size of a
JTree.
|
Dimension |
JTextArea.getPreferredScrollableViewportSize()
Returns the preferred size of the viewport if this component is embedded in a JScrollPane.
|
Dimension |
JTable.getPreferredScrollableViewportSize()
Returns the preferred size of the viewport for this table.
|
Dimension |
JList.getPreferredScrollableViewportSize()
Computes the size of viewport needed to display
visibleRowCount rows.
|
Dimension |
JEditorPane.getPreferredSize()
Returns the preferred size for the
JEditorPane.
|
Dimension |
JTextArea.getPreferredSize()
Returns the preferred size of the TextArea.
|
Dimension |
JTextField.getPreferredSize()
Returns the preferred size
Dimensions needed for this
TextField.
|
Dimension |
JToolBar.Separator.getPreferredSize()
Returns the preferred size for the separator.
|
Dimension |
JComponent.getPreferredSize()
If the
preferredSize has been set to a non-
null value just returns it.
|
Dimension |
JToolBar.Separator.getSeparatorSize()
Returns the size of the separator
|
Dimension |
JTree.AccessibleJTree.AccessibleJTreeNode.getSize()
|
Dimension |
JTable.AccessibleJTable.AccessibleJTableCell.getSize()
|
Dimension |
JList.AccessibleJList.AccessibleJListChild.getSize()
|
Dimension |
JComponent.getSize(Dimension
Stores the width/height of this component into "return value"
rv and returns
rv.
|
Dimension |
JViewport.getViewSize()
If the view's size hasn't been explicitly set, return the preferred size, otherwise return the view's current size.
|
Dimension |
JRootPane.RootLayout.maximumLayoutSize(Container
Returns the maximum amount of space the layout can use.
|
Dimension |
BoxLayout.maximumLayoutSize(Container
Returns the maximum dimensions the target container can use to lay out the components it contains.
|
Dimension |
SpringLayout.maximumLayoutSize(Container
|
Dimension |
OverlayLayout.maximumLayoutSize(Container
Returns the maximum dimensions needed to lay out the components contained in the specified target container.
|
Dimension |
GroupLayout.maximumLayoutSize(Container
Returns the maximum size for the specified container.
|
Dimension |
JRootPane.RootLayout.minimumLayoutSize(Container
Returns the minimum amount of space the layout needs.
|
Dimension |
ViewportLayout.minimumLayoutSize(Container
Returns the minimum dimensions needed to layout the components contained in the specified target container.
|
Dimension |
ScrollPaneLayout.minimumLayoutSize(Container
The minimum size of a
ScrollPane is the size of the insets plus minimum size of the viewport, plus the scrollpane's viewportBorder insets, plus the minimum size of the visible headers, plus the minimum size of the scrollbars whose displayPolicy isn't NEVER.
|
Dimension |
BoxLayout.minimumLayoutSize(Container
Returns the minimum dimensions needed to lay out the components contained in the specified target container.
|
Dimension |
SpringLayout.minimumLayoutSize(Container
|
Dimension |
JSpinner.DefaultEditor.minimumLayoutSize(Container
Returns the minimum size of first (and only) child plus the size of the parents insets.
|
Dimension |
OverlayLayout.minimumLayoutSize(Container
Returns the minimum dimensions needed to lay out the components contained in the specified target container.
|
Dimension |
GroupLayout.minimumLayoutSize(Container
Returns the minimum size for the specified container.
|
Dimension |
JRootPane.RootLayout.preferredLayoutSize(Container
Returns the amount of space the layout would like to have.
|
Dimension |
ViewportLayout.preferredLayoutSize(Container
Returns the preferred dimensions for this layout given the components in the specified target container.
|
Dimension |
ScrollPaneLayout.preferredLayoutSize(Container
The preferred size of a
ScrollPane is the size of the insets, plus the preferred size of the viewport, plus the preferred size of the visible headers, plus the preferred size of the scrollbars that will appear given the current view and the current scrollbar displayPolicies.
|
Dimension |
BoxLayout.preferredLayoutSize(Container
Returns the preferred dimensions for this layout, given the components in the specified target container.
|
Dimension |
SpringLayout.preferredLayoutSize(Container
|
Dimension |
JSpinner.DefaultEditor.preferredLayoutSize(Container
Returns the preferred size of first (and only) child plus the size of the parents insets.
|
Dimension |
OverlayLayout.preferredLayoutSize(Container
Returns the preferred dimensions for this layout given the components in the specified target container.
|
Dimension |
GroupLayout.preferredLayoutSize(Container
Returns the preferred size for the specified container.
|
Dimension |
JViewport.toViewCoordinates(Dimension
Converts a size in pixel coordinates to view coordinates.
|
| Modifier and Type | Method and Description |
|---|---|
void |
JToolBar.addSeparator(Dimension
Appends a separator of a specified size to the end of the tool bar.
|
void |
Box.Filler.changeShape(Dimension
Change the size requests for this shape.
|
protected boolean |
JViewport.computeBlit(int dx, int dy, Point
Computes the parameters for a blit where the backing store image currently contains
oldLoc in the upper left hand corner and we're scrolling to
newLoc.
|
static Component |
Box.createRigidArea(Dimension
Creates an invisible component that's always the specified size.
|
Dimension |
JComponent.getSize(Dimension
Stores the width/height of this component into "return value"
rv and returns
rv.
|
void |
RepaintManager.setDoubleBufferMaximumSize(Dimension
Set the maximum double buffer size.
|
void |
JViewport.setExtentSize(Dimension
Sets the size of the visible part of the view using view coordinates.
|
void |
JTable.setIntercellSpacing(Dimension
Sets the
rowMargin and the
columnMargin -- the height and width of the space between cells -- to
intercellSpacing.
|
void |
JComponent.setMaximumSize(Dimension
Sets the maximum size of this component to a constant value.
|
void |
JComponent.setMinimumSize(Dimension
Sets the minimum size of this component to a constant value.
|
void |
JPopupMenu.setPopupSize(Dimension
Sets the size of the Popup window using a
Dimension object.
|
void |
JTable.setPreferredScrollableViewportSize(Dimension
Sets the preferred size of the viewport for this table.
|
void |
JComponent.setPreferredSize(Dimension
Sets the preferred size of this component.
|
void |
JToolBar.Separator.setSeparatorSize(Dimension
Sets the size of the separator.
|
void |
JTree.AccessibleJTree.AccessibleJTreeNode.setSize(Dimension
|
void |
JTable.AccessibleJTable.AccessibleJTableCell.setSize(Dimension
|
void |
JList.AccessibleJList.AccessibleJListChild.setSize(Dimension
|
void |
JViewport.setViewSize(Dimension
Sets the size of the view.
|
Dimension |
JViewport.toViewCoordinates(Dimension
Converts a size in pixel coordinates to view coordinates.
|
| Constructor and Description | |
|---|---|
Filler(Dimension
Constructor to create shape with the given size ranges.
|
|
Separator(Dimension
Creates a new toolbar separator with the specified size.
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
TitledBorder.getMinimumSize(Component
Returns the minimum dimensions this border requires in order to fully display the border and title.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DimensionUIResource
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
LayerUI.getMaximumSize(JComponent
If the
JLayer's view component is not
null, this returns the result of the view's
getMaximumSize() method.
|
Dimension |
ComponentUI.getMaximumSize(JComponent
Returns the specified component's maximum size appropriate for the look and feel.
|
Dimension |
LayerUI.getMinimumSize(JComponent
If the
JLayer's view component is not
null, this returns the result of the view's
getMinimalSize() method.
|
Dimension |
ComponentUI.getMinimumSize(JComponent
Returns the specified component's minimum size appropriate for the look and feel.
|
Dimension |
LayerUI.getPreferredSize(JComponent
If the
JLayer's view component is not
null, this returns the result of the view's
getPreferredSize() method.
|
Dimension |
ComponentUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
| Modifier and Type | Field and Description |
|---|---|
protected Dimension |
BasicComboBoxUI.cachedMinimumSize
|
protected Dimension |
BasicScrollBarUI.maximumThumbSize
|
protected Dimension |
BasicOptionPaneUI.minimumSize
|
protected Dimension |
BasicScrollBarUI.minimumThumbSize
|
protected Dimension |
BasicTreeUI.preferredMinSize
Minimum preferred size.
|
protected Dimension |
BasicTreeUI.preferredSize
Size needed to completely display all the nodes.
|
| Modifier and Type | Method and Description |
|---|---|
protected Dimension |
BasicTabbedPaneUI.TabbedPaneLayout.calculateSize(boolean minimum)
|
protected Dimension |
BasicComboBoxUI.getDefaultSize()
Return the default size of an empty display area of the combo box using the current renderer and font.
|
protected Dimension |
BasicComboBoxUI.getDisplaySize()
Returns the calculated size of the display area.
|
Dimension |
BasicArrowButton.getMaximumSize()
Returns the maximum size of the
BasicArrowButton.
|
Dimension |
BasicToolTipUI.getMaximumSize(JComponent
|
Dimension |
BasicInternalFrameUI.getMaximumSize(JComponent
|
Dimension |
BasicSeparatorUI.getMaximumSize(JComponent
|
Dimension |
BasicSliderUI.getMaximumSize(JComponent
|
Dimension |
BasicButtonUI.getMaximumSize(JComponent
|
Dimension |
BasicMenuUI.getMaximumSize(JComponent
|
Dimension |
BasicDesktopPaneUI.getMaximumSize(JComponent
|
Dimension |
BasicTableHeaderUI.getMaximumSize(JComponent
Return the maximum size of the header.
|
Dimension |
BasicTabbedPaneUI.getMaximumSize(JComponent
|
Dimension |
BasicSplitPaneUI.getMaximumSize(JComponent
Returns the maximum size for the passed in component, This is passed off to the current layout manager.
|
Dimension |
BasicScrollPaneUI.getMaximumSize(JComponent
|
Dimension |
BasicLabelUI.getMaximumSize(JComponent
|
Dimension |
BasicMenuItemUI.getMaximumSize(JComponent
|
Dimension |
BasicComboBoxUI.getMaximumSize(JComponent
|
Dimension |
BasicMenuBarUI.getMaximumSize(JComponent
|
Dimension |
BasicTableUI.getMaximumSize(JComponent
Return the maximum size of the table.
|
Dimension |
BasicProgressBarUI.getMaximumSize(JComponent
|
Dimension |
BasicDesktopIconUI.getMaximumSize(JComponent
Desktop icons can not be resized.
|
Dimension |
BasicScrollBarUI.getMaximumSize(JComponent
|
Dimension |
BasicTreeUI.getMaximumSize(JComponent
Returns the maximum size for this component, which will be the preferred size if the instance is currently in a JTree, or 0, 0.
|
Dimension |
BasicTextUI.getMaximumSize(JComponent
Gets the maximum size for the editor component.
|
protected Dimension |
BasicScrollBarUI.getMaximumThumbSize()
Returns the largest acceptable size for the thumb.
|
Dimension |
BasicSliderUI.getMinimumHorizontalSize()
|
Dimension |
BasicOptionPaneUI.getMinimumOptionPaneSize()
Returns the minimum size the option pane should be.
|
Dimension |
BasicSplitPaneDivider.getMinimumSize()
Returns dividerSize x dividerSize
|
Dimension |
BasicArrowButton.getMinimumSize()
Returns the minimum size of the
BasicArrowButton.
|
Dimension |
BasicToolTipUI.getMinimumSize(JComponent
|
Dimension |
BasicInternalFrameUI.getMinimumSize(JComponent
|
Dimension |
BasicTextAreaUI.getMinimumSize(JComponent
The method is overridden to take into account caret width.
|
Dimension |
BasicSeparatorUI.getMinimumSize(JComponent
|
Dimension |
BasicSliderUI.getMinimumSize(JComponent
|
Dimension |
BasicButtonUI.getMinimumSize(JComponent
|
Dimension |
BasicDesktopPaneUI.getMinimumSize(JComponent
|
Dimension |
BasicTableHeaderUI.getMinimumSize(JComponent
Return the minimum size of the header.
|
Dimension |
BasicTabbedPaneUI.getMinimumSize(JComponent
|
Dimension |
BasicSplitPaneUI.getMinimumSize(JComponent
Returns the minimum size for the passed in component, This is passed off to the current layout manager.
|
Dimension |
BasicLabelUI.getMinimumSize(JComponent
|
Dimension |
BasicMenuItemUI.getMinimumSize(JComponent
|
Dimension |
BasicComboBoxUI.getMinimumSize(JComponent
The minimum size is the size of the display area plus insets plus the button.
|
Dimension |
BasicMenuBarUI.getMinimumSize(JComponent
|
Dimension |
BasicTableUI.getMinimumSize(JComponent
Return the minimum size of the table.
|
Dimension |
BasicProgressBarUI.getMinimumSize(JComponent
The Minimum size for this component is 10.
|
Dimension |
BasicDesktopIconUI.getMinimumSize(JComponent
|
Dimension |
BasicTreeUI.getMinimumSize(JComponent
Returns the minimum size for this component.
|
Dimension |
BasicTextUI.getMinimumSize(JComponent
Gets the minimum size for the editor component.
|
protected Dimension |
BasicScrollBarUI.getMinimumThumbSize()
Returns the smallest acceptable size for the thumb.
|
Dimension |
BasicSliderUI.getMinimumVerticalSize()
|
static Dimension |
BasicGraphicsUtils.getPreferredButtonSize(AbstractButton
|
Dimension |
BasicSliderUI.getPreferredHorizontalSize()
|
protected Dimension |
BasicProgressBarUI.getPreferredInnerHorizontal()
|
protected Dimension |
BasicProgressBarUI.getPreferredInnerVertical()
|
protected Dimension |
BasicMenuItemUI.getPreferredMenuItemSize(JComponent
|
Dimension |
BasicTreeUI.getPreferredMinSize()
Returns the minimum preferred size.
|
Dimension |
BasicSplitPaneDivider.getPreferredSize()
Returns dividerSize x dividerSize
|
Dimension |
BasicArrowButton.getPreferredSize()
Returns the preferred size of the
BasicArrowButton.
|
Dimension |
BasicComboBoxRenderer.getPreferredSize()
|
Dimension |
BasicToolTipUI.getPreferredSize(JComponent
|
Dimension |
BasicInternalFrameUI.getPreferredSize(JComponent
|
Dimension |
BasicTextAreaUI.getPreferredSize(JComponent
The method is overridden to take into account caret width.
|
Dimension |
BasicSeparatorUI.getPreferredSize(JComponent
|
Dimension |
BasicOptionPaneUI.getPreferredSize(JComponent
If
c is the
JOptionPane the receiver is contained in, the preferred size that is returned is the maximum of the preferred size of the
LayoutManager for the
JOptionPane, and
getMinimumOptionPaneSize.
|
Dimension |
BasicSliderUI.getPreferredSize(JComponent
|
Dimension |
BasicButtonUI.getPreferredSize(JComponent
|
Dimension |
BasicDesktopPaneUI.getPreferredSize(JComponent
|
Dimension |
BasicTableHeaderUI.getPreferredSize(JComponent
Return the preferred size of the header.
|
Dimension |
BasicSplitPaneUI.getPreferredSize(JComponent
Returns the preferred size for the passed in component, This is passed off to the current layout manager.
|
Dimension |
BasicLabelUI.getPreferredSize(JComponent
|
Dimension |
BasicMenuItemUI.getPreferredSize(JComponent
|
Dimension |
BasicComboBoxUI.getPreferredSize(JComponent
|
Dimension |
BasicTableUI.getPreferredSize(JComponent
Return the preferred size of the table.
|
Dimension |
BasicProgressBarUI.getPreferredSize(JComponent
|
Dimension |
BasicDesktopIconUI.getPreferredSize(JComponent
|
Dimension |
BasicScrollBarUI.getPreferredSize(JComponent
A vertical scrollbar's preferred width is the maximum of preferred widths of the (non
null) increment/decrement buttons, and the minimum width of the thumb.
|
Dimension |
BasicToolBarSeparatorUI.getPreferredSize(JComponent
|
Dimension |
BasicListUI.getPreferredSize(JComponent
The preferredSize of the list depends upon the layout orientation.
|
Dimension |
BasicTreeUI.getPreferredSize(JComponent
Returns the preferred size to properly display the tree, this is a cover method for getPreferredSize(c, true).
|
Dimension |
BasicPopupMenuSeparatorUI.getPreferredSize(JComponent
|
Dimension |
BasicTextUI.getPreferredSize(JComponent
Gets the preferred size for the editor component.
|
Dimension |
BasicRadioButtonUI.getPreferredSize(JComponent
The preferred size of the radio button
|
Dimension |
BasicTreeUI.getPreferredSize(JComponent
Returns the preferred size to represent the tree in
c.
|
Dimension |
BasicSliderUI.getPreferredVerticalSize()
|
protected Dimension |
BasicComboBoxUI.getSizeForComponent(Component
Returns the size a component would have if used as a cell renderer.
|
protected Dimension |
BasicSliderUI.getThumbSize()
|
Dimension |
BasicSplitPaneUI.BasicHorizontalLayoutManager.maximumLayoutSize(Container
Returns the maximum layout size, which is Integer.MAX_VALUE in both directions.
|
Dimension |
BasicInternalFrameUI.InternalFrameLayout.minimumLayoutSize(Container
|
Dimension |
BasicOptionPaneUI.ButtonAreaLayout.minimumLayoutSize(Container
|
Dimension |
BasicTabbedPaneUI.TabbedPaneLayout.minimumLayoutSize(Container
|
Dimension |
BasicSplitPaneDivider.DividerLayout.minimumLayoutSize(Container
|
Dimension |
BasicSplitPaneUI.BasicHorizontalLayoutManager.minimumLayoutSize(Container
Returns the minimum size needed to contain the children.
|
Dimension |
BasicComboBoxUI.ComboBoxLayoutManager.minimumLayoutSize(Container
|
Dimension |
BasicInternalFrameTitlePane.TitlePaneLayout.minimumLayoutSize(Container
|
Dimension |
BasicScrollBarUI.minimumLayoutSize(Container
|
Dimension |
BasicInternalFrameUI.InternalFrameLayout.preferredLayoutSize(Container
|
Dimension |
DefaultMenuLayout.preferredLayoutSize(Container
|
Dimension |
BasicOptionPaneUI.ButtonAreaLayout.preferredLayoutSize(Container
|
Dimension |
BasicTabbedPaneUI.TabbedPaneLayout.preferredLayoutSize(Container
|
Dimension |
BasicSplitPaneDivider.DividerLayout.preferredLayoutSize(Container
|
Dimension |
BasicSplitPaneUI.BasicHorizontalLayoutManager.preferredLayoutSize(Container
Returns the preferred size needed to contain the children.
|
Dimension |
BasicComboBoxUI.ComboBoxLayoutManager.preferredLayoutSize(Container
|
Dimension |
BasicInternalFrameTitlePane.TitlePaneLayout.preferredLayoutSize(Container
|
Dimension |
BasicScrollBarUI.preferredLayoutSize(Container
|
| Modifier and Type | Method and Description |
|---|---|
protected int |
BasicSplitPaneUI.BasicHorizontalLayoutManager.getAvailableSize(Dimension
Returns the available width based on the container size and Insets.
|
protected void |
BasicRadioButtonUI.paintFocus(Graphics
|
protected void |
BasicSplitPaneUI.BasicHorizontalLayoutManager.setComponentToSize(Component
Sets the width of the component c to be size, placing its x location at location, y to the insets.top and height to the containersize.height less the top and bottom insets.
|
void |
BasicTreeUI.setPreferredMinSize(Dimension
Sets the preferred minimum size.
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
MetalScrollButton.getMaximumSize()
|
Dimension |
MetalDesktopIconUI.getMaximumSize(JComponent
|
Dimension |
MetalFileChooserUI.getMaximumSize(JComponent
Returns the maximum size of the
JFileChooser.
|
Dimension |
MetalComboBoxButton.getMinimumSize()
|
Dimension |
MetalScrollButton.getMinimumSize()
|
Dimension |
MetalDesktopIconUI.getMinimumSize(JComponent
|
Dimension |
MetalFileChooserUI.getMinimumSize(JComponent
Returns the minimum size of the
JFileChooser.
|
Dimension |
MetalComboBoxUI.getMinimumSize(JComponent
|
protected Dimension |
MetalScrollBarUI.getMinimumThumbSize()
|
Dimension |
MetalScrollButton.getPreferredSize()
|
Dimension |
MetalToolTipUI.getPreferredSize(JComponent
|
Dimension |
MetalPopupMenuSeparatorUI.getPreferredSize(JComponent
|
Dimension |
MetalDesktopIconUI.getPreferredSize(JComponent
|
Dimension |
MetalFileChooserUI.getPreferredSize(JComponent
Returns the preferred size of the specified
JFileChooser.
|
Dimension |
MetalScrollBarUI.getPreferredSize(JComponent
|
Dimension |
MetalSeparatorUI.getPreferredSize(JComponent
|
protected Dimension |
MetalSliderUI.getThumbSize()
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
MetalRadioButtonUI.paintFocus(Graphics
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
MultiDesktopPaneUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiPopupMenuUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiSeparatorUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiScrollBarUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiFileChooserUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiColorChooserUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiDesktopIconUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiProgressBarUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiLabelUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiTableUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiMenuBarUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiToolBarUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiTableHeaderUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiPanelUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiSliderUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiViewportUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiTabbedPaneUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiInternalFrameUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiListUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiButtonUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiMenuItemUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiTextUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiTreeUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiComboBoxUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiRootPaneUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiSplitPaneUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiOptionPaneUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiToolTipUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiScrollPaneUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiSpinnerUI.getMaximumSize(JComponent
Invokes the
getMaximumSize method on each UI handled by this object.
|
Dimension |
MultiDesktopPaneUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiPopupMenuUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiSeparatorUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiScrollBarUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiFileChooserUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiColorChooserUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiDesktopIconUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiProgressBarUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiLabelUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiTableUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiMenuBarUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiToolBarUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiTableHeaderUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiPanelUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiSliderUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiViewportUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiTabbedPaneUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiInternalFrameUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiListUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiButtonUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiMenuItemUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiTextUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiTreeUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiComboBoxUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiRootPaneUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiSplitPaneUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiOptionPaneUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiToolTipUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiScrollPaneUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiSpinnerUI.getMinimumSize(JComponent
Invokes the
getMinimumSize method on each UI handled by this object.
|
Dimension |
MultiDesktopPaneUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiPopupMenuUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiSeparatorUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiScrollBarUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiFileChooserUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiColorChooserUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiDesktopIconUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiProgressBarUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiLabelUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiTableUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiMenuBarUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiToolBarUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiTableHeaderUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiPanelUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiSliderUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiViewportUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiTabbedPaneUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiInternalFrameUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiListUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiButtonUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiMenuItemUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiTextUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiTreeUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiComboBoxUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiRootPaneUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiSplitPaneUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiOptionPaneUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiToolTipUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiScrollPaneUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
Dimension |
MultiSpinnerUI.getPreferredSize(JComponent
Invokes the
getPreferredSize method on each UI handled by this object.
|
| Constructor and Description | |
|---|---|
PaintContext(Insets
Creates a new PaintContext which does not attempt to cache or scale any cached images.
|
|
PaintContext(Insets
Creates a new PaintContext.
|
| Modifier and Type | Method and Description |
|---|---|
protected Dimension |
SynthComboBoxUI.getDefaultSize()
Returns the default size of an empty display area of the combo box using the current renderer and font.
|
Dimension |
SynthSeparatorUI.getMaximumSize(JComponent
Returns the specified component's maximum size appropriate for the look and feel.
|
Dimension |
SynthLabelUI.getMaximumSize(JComponent
Returns the specified component's maximum size appropriate for the look and feel.
|
Dimension |
SynthButtonUI.getMaximumSize(JComponent
Returns the specified component's maximum size appropriate for the look and feel.
|
Dimension |
SynthGraphicsUtils.getMaximumSize(SynthContext
Returns the maximum size needed to properly render an icon and text.
|
Dimension |
SynthSeparatorUI.getMinimumSize(JComponent
Returns the specified component's minimum size appropriate for the look and feel.
|
Dimension |
SynthLabelUI.getMinimumSize(JComponent
Returns the specified component's minimum size appropriate for the look and feel.
|
Dimension |
SynthButtonUI.getMinimumSize(JComponent
Returns the specified component's minimum size appropriate for the look and feel.
|
Dimension |
SynthSliderUI.getMinimumSize(JComponent
Returns the specified component's minimum size appropriate for the look and feel.
|
Dimension |
SynthGraphicsUtils.getMinimumSize(SynthContext
Returns the minimum size needed to properly render an icon and text.
|
protected Dimension |
SynthScrollBarUI.getMinimumThumbSize()
Returns the smallest acceptable size for the thumb.
|
protected Dimension |
SynthMenuUI.getPreferredMenuItemSize(JComponent
|
protected Dimension |
SynthMenuItemUI.getPreferredMenuItemSize(JComponent
|
Dimension |
SynthSeparatorUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthProgressBarUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthScrollBarUI.getPreferredSize(JComponent
A vertical scrollbar's preferred width is the maximum of preferred widths of the (non
null) increment/decrement buttons, and the minimum width of the thumb.
|
Dimension |
SynthLabelUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthToolTipUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthButtonUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthSliderUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthGraphicsUtils.getPreferredSize(SynthContext
Returns the preferred size needed to properly render an icon and text.
|
protected Dimension |
SynthSliderUI.getThumbSize()
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry.getSize()
|
| Modifier and Type | Method and Description |
|---|---|
void |
JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry.setSize(Dimension
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
JTextComponent.getPreferredScrollableViewportSize()
Returns the preferred size of the viewport for a view component.
|
| Modifier and Type | Method and Description |
|---|---|
Dimension |
DefaultTreeCellEditor.DefaultTextField.getPreferredSize()
Overrides
JTextField.getPreferredSize to return the preferred size based on current font, if set, or else use renderer's font.
|
Dimension |
DefaultTreeCellEditor.EditorContainer.getPreferredSize()
Returns the preferred size for the
Container.
|
Dimension |
DefaultTreeCellRenderer.getPreferredSize()
Overrides
JComponent.getPreferredSize to return slightly wider preferred size value.
|