Generated by
JDiff

Class javax.swing.JScrollPane

Documentation changed from old to new.

Changed Constructors
JScrollPane(int, int) Documentation changed from old to new.
Creates an empty (no viewport view) JScrollPane with specified scrollbar policies.
JScrollPane(Component) Documentation changed from old to new.
Creates a JScrollPane that displays the contents of the specified component where both horizontal and vertical scrollbars appear whenever the component's contents are larger than the view.
JScrollPane(Component, int, int) Documentation changed from old to new.
Creates a JScrollPane that displays the view component in a viewport whose view position can be controlled with a pair of scrollbars.
JScrollPane(void) Documentation changed from old to new.
Creates an empty (no viewport view) JScrollPane where both horizontal and vertical scrollbars appear when needed.
 

Changed Methods
JScrollBar createHorizontalScrollBar() Documentation changed from old to new.
Returns a JScrollPane.ScrollBar by default.
JScrollBar createVerticalScrollBar() Documentation changed from old to new.
Returns a JScrollPane.ScrollBar by default.
JViewport createViewport() Documentation changed from old to new.
Returns a new JViewport by default.
AccessibleContext getAccessibleContext() Documentation changed from old to new.
Gets the AccessibleContext associated with this JScrollPane.
JViewport getColumnHeader() Documentation changed from old to new.
Returns the column header.
Component getCorner(String) Documentation changed from old to new.
Returns the component at the specified corner.
JScrollBar getHorizontalScrollBar() Documentation changed from old to new.
Returns the horizontal scroll bar that controls the viewport's horizontal view position.
int getHorizontalScrollBarPolicy() Documentation changed from old to new.
Returns the horizontal scroll bar policy value.
JViewport getRowHeader() Documentation changed from old to new.
Returns the row header.
ScrollPaneUI getUI() Documentation changed from old to new.
Returns the look and feel (L&F) object that renders this component.
String getUIClassID() Documentation changed from old to new.
Returns the suffix used to construct the name of the L&F class used to render this component.
JScrollBar getVerticalScrollBar() Documentation changed from old to new.
Returns the vertical scroll bar that controls the viewports vertical view position.
int getVerticalScrollBarPolicy() Documentation changed from old to new.
Returns the vertical scroll bar policy value.
JViewport getViewport() Documentation changed from old to new.
Returns the current JViewport.
Border getViewportBorder() Documentation changed from old to new.
Returns the Border object that surrounds the viewport.
Rectangle getViewportBorderBounds() Documentation changed from old to new.
Returns the bounds of the viewport's border.
boolean isOpaque() Documentation changed from old to new.
Method was locally defined, but is now inherited from JComponent.
Returns true if this component is completely opaque.
boolean isValidateRoot() Documentation changed from old to new.
Calls revalidate on any descendant of this JScrollPane.
String paramString() Documentation changed from old to new.
Returns a string representation of this JScrollPane.
void setColumnHeader(JViewport) Documentation changed from old to new.
Removes the old columnHeader if it exists.
void setColumnHeaderView(Component) Documentation changed from old to new.
Creates a column-header viewport if necessary sets its view and then adds the column-header viewport to the scrollpane.
void setComponentOrientation(ComponentOrientation) Documentation changed from old to new.
Method was inherited from Component, but is now defined locally.
Sets the orientation for the vertical and horizontal scrollbars as determined by the ComponentOrientation argument.
void setCorner(String, Component) Documentation changed from old to new.
Adds a child that will appear in one of the scroll panes corners if there's room.
void setHorizontalScrollBar(JScrollBar) Documentation changed from old to new.
Adds the scrollbar that controls the viewport's horizontal view position to the scrollpane.
void setHorizontalScrollBarPolicy(int) Documentation changed from old to new.
Determines when the horizontal scrollbar appears in the scrollpane.
void setLayout(LayoutManager) Documentation changed from old to new.
Sets the layout manager for this JScrollPane.
void setRowHeader(JViewport) Documentation changed from old to new.
Removes the old rowHeader if it exists.
void setRowHeaderView(Component) Documentation changed from old to new.
Creates a row-header viewport if necessary sets its view and then adds the row-header viewport to the scrollpane.
void setVerticalScrollBar(JScrollBar) Documentation changed from old to new.
Adds the scrollbar that controls the viewports vertical view position to the scrollpane.
void setVerticalScrollBarPolicy(int) Documentation changed from old to new.
Determines when the vertical scrollbar appears in the scrollpane.
void setViewport(JViewport) Documentation changed from old to new.
Removes the old viewport (if there is one); forces the viewPosition of the new viewport to be in the +x +y quadrant; syncs up the row and column headers (if there are any) with the new viewport; and finally syncs the scrollbars and headers with the new viewport.
void setViewportBorder(Border) Documentation changed from old to new.
Adds a border around the viewport.
void setViewportView(Component) Documentation changed from old to new.
Creates a viewport if necessary and then sets its view.
void updateUI() Documentation changed from old to new.
Replaces the current ScrollPaneUI object with a version from the current default look and feel.
void setUI(ScrollPaneUI) Documentation changed from old to new.
Sets the ScrollPaneUI object that provides the look and feel (L&F) for this component.
 

Changed Fields
JViewport columnHeader Documentation changed from old to new.
The column header child.
JScrollBar horizontalScrollBar Documentation changed from old to new.
The scrollpane's horizontal scrollbar child.
int horizontalScrollBarPolicy Documentation changed from old to new.
The display policy for the horizontal scrollbar.
Component lowerLeft Documentation changed from old to new.
The component to display in the lower left corner.
Component lowerRight Documentation changed from old to new.
The component to display in the lower right corner.
JViewport rowHeader Documentation changed from old to new.
The row header child.
Component upperLeft Documentation changed from old to new.
The component to display in the upper left corner.
Component upperRight Documentation changed from old to new.
The component to display in the upper right corner.
JScrollBar verticalScrollBar Documentation changed from old to new.
The scrollpane's vertical scrollbar child.
int verticalScrollBarPolicy Documentation changed from old to new.
The display policy for the vertical scrollbar.
JViewport viewport Documentation changed from old to new.
The scrollpane's viewport child.