Generated by
JDiff

Class javax.swing.JSplitPane

Documentation changed from old to new.

Changed Constructors
JSplitPane(int) Documentation changed from old to new.
Creates a new JSplitPane configured with the specified orientation and no continuous layout.
JSplitPane(int, boolean) Documentation changed from old to new.
Creates a new JSplitPane with the specified orientation and redrawing style.
JSplitPane(int, boolean, Component, Component) Documentation changed from old to new.
Creates a new JSplitPane with the specified orientation and redrawing style and with the specified components.
JSplitPane(int, Component, Component) Documentation changed from old to new.
Creates a new JSplitPane with the specified orientation and with the specified components that do not do continuous redrawing.
JSplitPane(void) Documentation changed from old to new.
Creates a new JSplitPane configured to arrange the child components side-by-side horizontally with no continuous layout using two buttons for the components.
 

Added Methods
double getResizeWeight() Returns the number that determines how extra space is distributed.
void setResizeWeight(double) Specifies how to distribute extra space when the size of the split pane changes.
 

Changed Methods
void addImpl(Component, Object, int) Documentation changed from old to new.
Adds the specified component to this split pane.
AccessibleContext getAccessibleContext() Documentation changed from old to new.
Gets the AccessibleContext associated with this JSplitPane.
Component getBottomComponent() Documentation changed from old to new.
Returns the component below or to the right of the divider.
int getDividerLocation() Documentation changed from old to new.
Returns the last value passed to setDividerLocation.
int getDividerSize() Documentation changed from old to new.
Returns the size of the divider.
int getLastDividerLocation() Documentation changed from old to new.
Returns the last location the divider was at.
Component getLeftComponent() Documentation changed from old to new.
Returns the component to the left (or above) the divider.
int getMaximumDividerLocation() Documentation changed from old to new.
Returns the maximum location of the divider from the look and feel implementation.
int getMinimumDividerLocation() Documentation changed from old to new.
Returns the minimum location of the divider from the look and feel implementation.
int getOrientation() Documentation changed from old to new.
Returns the orientation.
Component getRightComponent() Documentation changed from old to new.
Returns the component to the right (or below) the divider.
Component getTopComponent() Documentation changed from old to new.
Returns the component above or to the left of the divider.
SplitPaneUI getUI() Documentation changed from old to new.
Returns the SplitPaneUI that is providing the current look and feel.
String getUIClassID() Documentation changed from old to new.
Returns the name of the L&F class that renders this component.
boolean isValidateRoot() Documentation changed from old to new.
Returns true so that calls to revalidate on any descendant of this JSplitPane will cause a request to be queued that will validate the JSplitPane and all its descendants.
void paintChildren(Graphics) Documentation changed from old to new.
Subclassed to message the UI with finishedPaintingChildren after super has been messaged as well as painting the border.
String paramString() Documentation changed from old to new.
Returns a string representation of this JSplitPane.
void removeAll() Documentation changed from old to new.
Removes all the child components from the split pane.
void resetToPreferredSizes() Documentation changed from old to new.
Lays out the JSplitPane layout based on the preferred size of the children components.
void setBottomComponent(Component) Documentation changed from old to new.
Sets the component below or to the right of the divider.
void setDividerSize(int) Documentation changed from old to new.
Sets the size of the divider.
void setLastDividerLocation(int) Documentation changed from old to new.
Sets the last location the divider was at to newLastLocation.
void setLeftComponent(Component) Documentation changed from old to new.
Sets the component to the left (or above) the divider.
void setOneTouchExpandable(boolean) Documentation changed from old to new.
Determines whether the JSplitPane provides a UI widget on the divider to quickly expand/collapse the divider.
void setOrientation(int) Documentation changed from old to new.
Sets the orientation or how the splitter is divided.
void setRightComponent(Component) Documentation changed from old to new.
Sets the component to the right (or below) the divider.
void setTopComponent(Component) Documentation changed from old to new.
Sets the component above or to the left of the divider.
void updateUI() Documentation changed from old to new.
Notification from the UIManager that the L&F has changed.
void remove(int) Documentation changed from old to new.
Removes the Component at the specified index.
void remove(Component) Documentation changed from old to new.
Removes the child component component from the pane.
void setDividerLocation(double) Documentation changed from old to new.
Sets the divider location as a percentage of the JSplitPane's size.
void setDividerLocation(int) Documentation changed from old to new.
Sets the location of the divider.
void setUI(SplitPaneUI) Documentation changed from old to new.
Sets the L&F object that renders this component.
 

Added Fields
String DIVIDER_LOCATION_PROPERTY Bound property for the dividerLocation.
String RESIZE_WEIGHT_PROPERTY Bound property for weight.
 

Changed Fields
String BOTTOM Documentation changed from old to new.
Used to add a Component below the other Component.
String DIVIDER Documentation changed from old to new.
Used to add a Component that will represent the divider.
int HORIZONTAL_SPLIT Documentation changed from old to new.
Horizontal split indicates the Components are split along the x axis.
String LEFT Documentation changed from old to new.
Used to add a Component to the left of the other Component.
String RIGHT Documentation changed from old to new.
Used to add a Component to the right of the other Component.
String TOP Documentation changed from old to new.
Used to add a Component above the other Component.
int VERTICAL_SPLIT Documentation changed from old to new.
Vertical split indicates the Components are split along the y axis.