| Changed Methods | 
  | voidaddListSelectionListener(ListSelectionListener) | Documentation changed from old to new. 
 | Adds a listener to the list that's notified each time a change to the selection occurs. | 
  | voidaddSelectionInterval(int,int) | Documentation changed from old to new. 
 | Sets the selection to be the union of the specified interval with current selection. | 
  | voidclearSelection() | Documentation changed from old to new. 
 | Clears the selection - after calling this method isSelectionEmptywill return true. | 
  | ListSelectionModelcreateSelectionModel() | Documentation changed from old to new. 
 | Returns an instance of DefaultListSelectionModel. | 
  | voidensureIndexIsVisible(int) | Documentation changed from old to new. 
 | Scrolls the viewport to make the specified cell completely visible. | 
  | voidfireSelectionValueChanged(int,int, boolean) | Documentation changed from old to new. 
 | Notifies JListListSelectionListeners that the selection model has changed. | 
  | AccessibleContextgetAccessibleContext() | Documentation changed from old to new. 
 | Gets the AccessibleContext associated with this JList. | 
  | intgetAnchorSelectionIndex() | Documentation changed from old to new. 
 | Returns the first index argument from the most recent addSelectionModelorsetSelectionIntervalcall. | 
  | RectanglegetCellBounds(int,int) | Documentation changed from old to new. 
 | Returns the bounds of the specified range of items in JListcoordinates. | 
  | ListCellRenderergetCellRenderer() | Documentation changed from old to new. 
 | Returns the object that renders the list items. | 
  | intgetFirstVisibleIndex() | Documentation changed from old to new. 
 | Returns the index of the cell in the upper left corner of the JListor -1 if nothing is visible or the list is empty. | 
  | intgetFixedCellHeight() | Documentation changed from old to new. 
 | Returns the fixed cell height value -- the value specified by setting the fixedCellHeightproperty rather than that calculated from the list elements. | 
  | intgetFixedCellWidth() | Documentation changed from old to new. 
 | Returns the fixed cell width value -- the value specified by setting the fixedCellWidthproperty rather than that calculated from the list elements. | 
  | intgetLastVisibleIndex() | Documentation changed from old to new. 
 | Returns the index of the cell in the lower right corner of the JListor -1 if nothing is visible or the list is empty. | 
  | intgetLeadSelectionIndex() | Documentation changed from old to new. 
 | Returns the second index argument from the most recent addSelectionIntervalorsetSelectionIntervalcall. | 
  | intgetMaxSelectionIndex() | Documentation changed from old to new. 
 | Returns the largest selected cell index. | 
  | intgetMinSelectionIndex() | Documentation changed from old to new. 
 | Returns the smallest selected cell index. | 
  | ListModelgetModel() | Documentation changed from old to new. 
 | Returns the data model that holds the list of items displayed by the JListcomponent. | 
  | DimensiongetPreferredScrollableViewportSize() | Documentation changed from old to new. 
 | Computes the size of the viewport needed to display visibleRowCountrows. | 
  | ObjectgetPrototypeCellValue() | Documentation changed from old to new. 
 | Returns the cell width of the "prototypical cell" -- a cell used for the calculation of cell widths because it has the same value as all other list items. | 
  | intgetScrollableBlockIncrement(Rectangle,int, int) | Documentation changed from old to new. 
 | Returns the block increment amount. | 
  | booleangetScrollableTracksViewportHeight() | Documentation changed from old to new. 
 | Returns true if this JListis displayed in aJViewportand the viewport is taller thanJList's preferred height; otherwise returns false. | 
  | booleangetScrollableTracksViewportWidth() | Documentation changed from old to new. 
 | Returns true if this JListis displayed in aJViewportand the viewport is wider thanJList's preferred width; otherwise returns false. | 
  | intgetScrollableUnitIncrement(Rectangle,int, int) | Documentation changed from old to new. 
 | Returns the distance to scroll to expose the next or previous row (for vertical scrolling) or character (for horizontal scrolling). | 
  | intgetSelectedIndex() | Documentation changed from old to new. 
 | Returns the first selected index; returns -1 if there is no selected item. | 
  | int[]getSelectedIndices() | Documentation changed from old to new. 
 | Returns an array of all of the selected indices in increasing order. | 
  | ObjectgetSelectedValue() | Documentation changed from old to new. 
 | Returns the first selected value or nullif the selection is empty. | 
  | Object[]getSelectedValues() | Documentation changed from old to new. 
 | Returns an array of the values for the selected cells. | 
  | ColorgetSelectionBackground() | Documentation changed from old to new. 
 | Returns the background color for selected cells. | 
  | ColorgetSelectionForeground() | Documentation changed from old to new. 
 | Returns the selection foreground color. | 
  | intgetSelectionMode() | Documentation changed from old to new. 
 | Returns whether single-item or multiple-item selections are allowed. | 
  | ListSelectionModelgetSelectionModel() | Documentation changed from old to new. 
 | Returns the value of the current selection model. | 
  | ListUIgetUI() | Documentation changed from old to new. 
 | Returns the look and feel (L&F) object that renders this component. | 
  | StringgetUIClassID() | Documentation changed from old to new. 
 | Returns the suffix used to construct the name of the look and feel (L&F) class used to render this component. | 
  | booleangetValueIsAdjusting() | Documentation changed from old to new. 
 | Returns the value of the data model's isAdjustingproperty. | 
  | intgetVisibleRowCount() | Documentation changed from old to new. 
 | Returns the preferred number of visible rows. | 
  | PointindexToLocation(int) | Documentation changed from old to new. 
 | Returns the origin of the specified item in JListcoordinates. | 
  | booleanisSelectedIndex(int) | Documentation changed from old to new. 
 | Returns true if the specified index is selected. | 
  | booleanisSelectionEmpty() | Documentation changed from old to new. 
 | Returns true if nothing is selected. | 
  | intlocationToIndex(Point) | Documentation changed from old to new. 
 | Converts a point in JListcoordinates to the index of the cell at that location. | 
  | StringparamString() | Documentation changed from old to new. 
 | Returns a string representation of this JList. | 
  | voidremoveListSelectionListener(ListSelectionListener) | Documentation changed from old to new. 
 | Removes a listener from the list that's notified each time a change to the selection occurs. | 
  | voidremoveSelectionInterval(int,int) | Documentation changed from old to new. 
 | Sets the selection to be the set difference of the specified interval and the current selection. | 
  | voidsetCellRenderer(ListCellRenderer) | Documentation changed from old to new. 
 | Sets the delegate that's used to paint each cell in the list. | 
  | voidsetFixedCellHeight(int) | Documentation changed from old to new. 
 | Sets the height of every cell in the list. | 
  | voidsetFixedCellWidth(int) | Documentation changed from old to new. 
 | Sets the width of every cell in the list. | 
  | voidsetModel(ListModel) | Documentation changed from old to new. 
 | Sets the model that represents the contents or "value" of the list and clears the list selection after notifying PropertyChangeListeners. | 
  | voidsetPrototypeCellValue(Object) | Documentation changed from old to new. 
 | Computes the fixedCellWidthandfixedCellHeightproperties by configuring thecellRendererto index equals zero for the specified value and then computing the renderer component's preferred size. | 
  | voidsetSelectedIndex(int) | Documentation changed from old to new. 
 | Selects a single cell. | 
  | voidsetSelectedIndices(int[]) | Documentation changed from old to new. 
 | Selects a set of cells. | 
  | voidsetSelectedValue(Object,boolean) | Documentation changed from old to new. 
 | Selects the specified object from the list. | 
  | voidsetSelectionBackground(Color) | Documentation changed from old to new. 
 | Sets the background color for selected cells. | 
  | voidsetSelectionForeground(Color) | Documentation changed from old to new. 
 | Sets the foreground color for selected cells. | 
  | voidsetSelectionInterval(int,int) | Documentation changed from old to new. 
 | Selects the specified interval. | 
  | voidsetSelectionMode(int) | Documentation changed from old to new. 
 | Determines whether single-item or multiple-item selections are allowed. | 
  | voidsetSelectionModel(ListSelectionModel) | Documentation changed from old to new. 
 | Sets the selectionModelfor the list to a non-nullListSelectionModelimplementation. | 
  | voidsetValueIsAdjusting(boolean) | Documentation changed from old to new. 
 | Sets the data model's isAdjustingproperty to true so that a single event will be generated when all of the selection events have finished (for example when the mouse is being dragged over the list in selection mode). | 
  | voidsetVisibleRowCount(int) | Documentation changed from old to new. 
 | Sets the preferred number of rows in the list that can be displayed without a scollbar as determined by the nearest JViewportancestor if any. | 
  | voidupdateUI() | Documentation changed from old to new. 
 | Sets the UI property with the "ListUI" from the current default UIFactory. | 
  | voidsetListData(Object[]) | Documentation changed from old to new. 
 | Constructs a ListModelfrom an array of objects and then appliessetModelto it. | 
  | voidsetListData(Vector) | Documentation changed from old to new. 
 | Constructs a ListModelfrom aVectorand then appliessetModelto it. | 
  | voidsetUI(ListUI) | Documentation changed from old to new. 
 | Sets the look and feel (L&F) object that renders this component. |