API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.swing. ScrollPaneLayout.UIResource View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      ScrollPaneLayout
          ScrollPaneLayout.UIResource
Implements
 UIResource
Subclasses
Description
publicstatic class ScrollPaneLayout.UIResource
The UI resource version of ScrollPaneLayout.
See also:   
Constructors
public ScrollPaneLayout.UIResource ()
Methods
Hide/Show inherited methods
public void addLayoutComponent (String s, Component c) [Inherited From ScrollPaneLayout]
  Adds the specified component to the layout.
protected Component addSingletonComponent (Component oldC, Component newC) [Inherited From ScrollPaneLayout]
  Removes an existing component.
public JViewport getColumnHeader () [Inherited From ScrollPaneLayout]
  Returns the JViewport object that is the column header.
public Component getCorner (String key) [Inherited From ScrollPaneLayout]
  Returns the Component at the specified corner.
public JScrollBar getHorizontalScrollBar () [Inherited From ScrollPaneLayout]
  Returns the JScrollBar object that handles horizontal scrolling.
public int getHorizontalScrollBarPolicy () [Inherited From ScrollPaneLayout]
  Returns the horizontal scrollbar-display policy.
public JViewport getRowHeader () [Inherited From ScrollPaneLayout]
  Returns the JViewport object that is the row header.
public JScrollBar getVerticalScrollBar () [Inherited From ScrollPaneLayout]
  Returns the JScrollBar object that handles vertical scrolling.
public int getVerticalScrollBarPolicy () [Inherited From ScrollPaneLayout]
  Returns the vertical scrollbar-display policy.
public JViewport getViewport () [Inherited From ScrollPaneLayout]
  Returns the JViewport object that displays the scrollable contents.
@Deprecated
public Rectangle getViewportBorderBounds (JScrollPane scrollpane) [Inherited From ScrollPaneLayout]
  Returns the bounds of the border around the specified scroll pane's viewport.
public void layoutContainer (Container parent) [Inherited From ScrollPaneLayout]
  Lays out the scrollpane.
public Dimension minimumLayoutSize (Container parent) [Inherited From ScrollPaneLayout]
  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.
public Dimension preferredLayoutSize (Container parent) [Inherited From ScrollPaneLayout]
  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.
public void removeLayoutComponent (Component c) [Inherited From ScrollPaneLayout]
  Removes the specified component from the layout.
public void setHorizontalScrollBarPolicy (int x) [Inherited From ScrollPaneLayout]
  Sets the horizontal scrollbar-display policy.
public void setVerticalScrollBarPolicy (int x) [Inherited From ScrollPaneLayout]
  Sets the vertical scrollbar-display policy.
public void syncWithScrollPane (JScrollPane sp) [Inherited From ScrollPaneLayout]
  This method is invoked after the ScrollPaneLayout is set as the LayoutManager of a JScrollPane.
Fields
Hide/Show inherited fields
protected JViewport colHead [Inherited From ScrollPaneLayout]
  The column header child.
protected JScrollBar hsb [Inherited From ScrollPaneLayout]
  The scrollpane's horizontal scrollbar child.
protected int hsbPolicy [Inherited From ScrollPaneLayout]
  The display policy for the horizontal scrollbar.
protected Component lowerLeft [Inherited From ScrollPaneLayout]
  The component to display in the lower left corner.
protected Component lowerRight [Inherited From ScrollPaneLayout]
  The component to display in the lower right corner.
protected JViewport rowHead [Inherited From ScrollPaneLayout]
  The row header child.
protected Component upperLeft [Inherited From ScrollPaneLayout]
  The component to display in the upper left corner.
protected Component upperRight [Inherited From ScrollPaneLayout]
  The component to display in the upper right corner.
protected JViewport viewport [Inherited From ScrollPaneLayout]
  The scrollpane's viewport child.
protected JScrollBar vsb [Inherited From ScrollPaneLayout]
  The scrollpane's vertical scrollbar child.
protected int vsbPolicy [Inherited From ScrollPaneLayout]
  The display policy for the vertical scrollbar.
Nested Classes
  ScrollPaneLayout.UIResource
The UI resource version of ScrollPaneLayout.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar