| java.awt.peer.ListPeer
ListPeer | public interface ListPeer extends ComponentPeer(Code) | | The peer interfaces are intended only for use in porting
the AWT. They are not intended for use by application
developers, and developers should not implement peers
nor invoke any of the peer methods directly on the peer
instances.
|
addItem | void addItem(String item, int index)(Code) | | DEPRECATED: Replaced by add(String, int).
|
clear | void clear()(Code) | | DEPRECATED: Replaced by removeAll().
|
delItems | void delItems(int start, int end)(Code) | | |
deselect | void deselect(int index)(Code) | | |
getSelectedIndexes | int[] getSelectedIndexes()(Code) | | |
makeVisible | void makeVisible(int index)(Code) | | |
minimumSize | Dimension minimumSize(int v)(Code) | | DEPRECATED: Replaced by getMinimumSize(int).
|
preferredSize | Dimension preferredSize(int v)(Code) | | DEPRECATED: Replaced by getPreferredSize(int).
|
removeAll | void removeAll()(Code) | | |
select | void select(int index)(Code) | | |
setMultipleMode | void setMultipleMode(boolean b)(Code) | | |
setMultipleSelections | void setMultipleSelections(boolean v)(Code) | | DEPRECATED: Replaced by setMultipleMode(boolean).
|
|
|