| java.lang.Object java.awt.Component java.awt.Container javax.swing.JComponent javax.swing.JTree edu.rice.cs.util.docnavigation.JTreeSortNavigator
Method Summary | |
public boolean | _contains(ItemT doc) Tests to see if a given document is contained in this navigator. | public void | addDocument(ItemT doc) Adds an IDocument to this navigator. | public void | addDocument(ItemT doc, String path) Adds an INavigatorItem into this navigator in the position specified by path. | public void | addNavigationListener(INavigationListener<? super ItemT> listener) Adds an INavigationListener to this navigator. | public void | addTopLevelGroup(String name, INavigatorItemFilter<? super ItemT> f) Adds a top level group to the navigator. | public Container | asContainer() | public void | clear() Removes all IDocuments from this IDocumentNavigator . | public void | collapsePaths(String[] paths) Collapses all the paths in the tree that match one of the path strings included in the given hash set. | void | collapsePaths(HashSet<String> paths) Set variation of collapsePaths(String ...). | public boolean | contains(ItemT doc) Tests to see if a given document is contained in this navigator. | public void | dragEnter(DropTargetDragEvent dropTargetDragEvent) User dragged something into the component. | public void | dragExit(DropTargetEvent dropTargetEvent) | public void | dragOver(DropTargetDragEvent dropTargetDragEvent) | public synchronized void | drop(DropTargetDropEvent dropTargetDropEvent) User dropped something on the component. | public void | dropActionChanged(DropTargetDragEvent dropTargetDragEvent) | public ReturnType | execute(IDocumentNavigatorAlgo<ItemT, InType, ReturnType> algo, InType input) Standard visitor pattern. | public String | generatePathString(TreePath tp) Generates a path string for the given tree node. | public String[] | getCollapsedPaths() an array of path strings corresponding to the paths of the tree nodes thatare currently collapsed. | public ItemT | getCurrent() Returns the currently selected leaf node, or null if the selected node is not a leaf. | public int | getDocumentCount() Returns the number of IDocuments contained by this IDocumentNavigator
Not synchronized on the assumption that size field of a HashMap always has a legitimate
value (either the size of the current state or the size of its state before some concurrent
operation started. | public int | getDocumentSelectedCount() the number of documents selected. | public Enumeration<ItemT> | getDocuments() Returns all the IDocuments contained in this navigator. | public Enumeration<ItemT> | getDocumentsInBin(String binName) Returns all the IDocuments contained in the specified bin. | public ItemT | getFirst() Returns the first document in the collection (using enumeration order). | public int | getGroupSelectedCount() the number of groups selected. | public ItemT | getLast() Returns the last document in the collection (using enumeration order). | public Object | getModelLock() Returns the model lock. | public java.util.Set<String> | getNamesOfSelectedTopLevelGroup() Returns the names of the top level groups that the selected items descend from. | public Collection<INavigationListener<? super ItemT>> | getNavigatorListeners() Returns a collection of all navigator listeners. | public ItemT | getNext(ItemT doc) Returns the next document in the collection (using enumeration order). | public ItemT | getPrevious(ItemT doc) Returns the previous document in the collection (using enumeration order). | public Component | getRenderer() Returns a renderer for this object. | public java.util.List<ItemT> | getSelectedDocuments() the documents currently selected. | public java.util.List<File> | getSelectedFolders() the folders currently selected. | public boolean | isDocumentSelected() true if at least one document is selected. | public boolean | isEmpty() Returns whether this IDocumentNavigator contains any IDocuments .
true if this navigator contains one or more documents, else false .Executes in any thread. | public boolean | isGroupSelected() true if at least one group of INavigatorItems is selected. | public boolean | isNextChangeModelInitiated() whether the next selection change is model-initiated (true) or user-initiated (false). | public boolean | isRootSelected() Returns true if the root is selected. | public boolean | isSelectedAt(int x, int y) Returns true if the item at the x,y coordinate of the navigator pane is currently selected.
Only runs in event thread. | public boolean | isSelectedInGroup(ItemT i) true if the INavigatorItem is in a selected group, if at leastone group is selected. | public boolean | isTopLevelGroupSelected() Returns true if at least one top level group is selected. | public void | refreshDocument(ItemT doc, String path) Resets a given INavigatorItem in the tree. | public ItemT | removeDocument(ItemT doc) Removes a given INavigatorItem from this navigator. | public void | removeNavigationListener(INavigationListener<? super ItemT> listener) Removes the given listener from observing this navigator. | public void | requestSelectionUpdate(ItemT ini) If the currently selected item is not an INavigatorItem, select the one given. | public boolean | selectDocumentAt(int x, int y) Selects the document at the x,y coordinate of the navigator pane and sets it to be the currently active
document. | public void | setActiveDoc(ItemT doc) Sets the specified document to be active (current). | public void | setBackground(Color c) | public void | setDisplayManager(DisplayManager<? super ItemT> manager) Sets the display manager that is used to select icons for the leaves of the tree. | public void | setForeground(Color c) | public void | setNextChangeModelInitiated(boolean b) Marks the next selection change as model-initiated (true) or user-initiated (false; default). | public void | setRootIcon(Icon ico) | public void | treeCollapsed(TreeExpansionEvent event) Called whenever an item in the tree has been collapsed. | public void | treeExpanded(TreeExpansionEvent event) Called whenever an item in the tree has been expanded. | public void | valueChanged(TreeSelectionEvent e) Called whenever the value of the selection changes. |
JTreeSortNavigator | public JTreeSortNavigator(String projRoot)(Code) | | Standard constructor.
Parameters: projRoot - the path identifying the root node for the project |
JTreeSortNavigator | public JTreeSortNavigator(String projRoot, DisplayManager<? super ItemT> dm)(Code) | | Alternate constructor specifying the display manager that provides icons for the navigator.
Parameters: projRoot - the path identifying the root node for the project Parameters: dm - the display manager for the navigagtor |
_contains | public boolean _contains(ItemT doc)(Code) | | Tests to see if a given document is contained in this navigator. Only executes in event thread.
|
addDocument | public void addDocument(ItemT doc)(Code) | | Adds an IDocument to this navigator. Should only executed from event thread.
Parameters: doc - the document to be added into this navigator. |
addDocument | public void addDocument(ItemT doc, String path)(Code) | | Adds an INavigatorItem into this navigator in the position specified by path.
The actual behavior of the navigator and the position associated with a path are left up
to the implementing class. Only runs in event-handling thread.
Parameters: doc - the document to be added into this navigator. Parameters: path - in navigator to parent directory for doc throws: IllegalArgumentException - if this navigator does not contain relativeto as tested by thecontains method. |
addNavigationListener | public void addNavigationListener(INavigationListener<? super ItemT> listener)(Code) | | Adds an INavigationListener to this navigator. After invoking this method, the passed
listener will be eligible for observing this navigator. If the provided listener is already observing
this navigator (as tested by the == operator), no action is taken. Only executes in event thread.
Parameters: listener - the listener to be added to this navigator. |
addTopLevelGroup | public void addTopLevelGroup(String name, INavigatorItemFilter<? super ItemT> f)(Code) | | Adds a top level group to the navigator. Only runs in event thread.
|
asContainer | public Container asContainer()(Code) | | an AWT component which interacts with this document navigator |
clear | public void clear()(Code) | | Removes all IDocuments from this IDocumentNavigator . Only executes in event thread.
|
collapsePaths | public void collapsePaths(String[] paths)(Code) | | Collapses all the paths in the tree that match one of the path strings included in the given hash set. Path
strings must follow a specific format in order for them to work. See the documentation of
generatePathString for information on the format of the path strings. Only executes in event thread.
Parameters: paths - A hash set of path strings. |
collapsePaths | void collapsePaths(HashSet<String> paths)(Code) | | Set variation of collapsePaths(String ...). Private except for testing code. Only runs in event thread except
for testing code.
|
contains | public boolean contains(ItemT doc)(Code) | | Tests to see if a given document is contained in this navigator. Executes in any thread.
Parameters: doc - the document to test for containment. true if this navigator contains a document that is "equal" (as tested by theequals false. |
execute | public ReturnType execute(IDocumentNavigatorAlgo<ItemT, InType, ReturnType> algo, InType input)(Code) | | Standard visitor pattern. Only used within this class.
Parameters: algo - the visitor to run Parameters: input - the input for the visitor |
generatePathString | public String generatePathString(TreePath tp)(Code) | | Generates a path string for the given tree node. The path string does not include the project
root node, but rather a period in its place. Following the "./" is one of the 3 main groups,
"[ Source Files ]", "[ Auxiliary ]", "[ External ]". The nodes in the path are represented by their
names delimited by the forward slash ("/"). The path ends with a final delimeter.
(e.g. "./[ Source Files ]/util/docnavigation/") Only runs in event thread.
the path string for the given node in the JTree |
getCollapsedPaths | public String[] getCollapsedPaths()(Code) | | an array of path strings corresponding to the paths of the tree nodes thatare currently collapsed. See the documentation of generatePathString for information on the format of the path strings. Only runs in event thread (except when testing). |
getCurrent | public ItemT getCurrent()(Code) | | Returns the currently selected leaf node, or null if the selected node is not a leaf. Only reads a single
volatile field that always has a valid value. Thread safe.
|
getDocumentCount | public int getDocumentCount()(Code) | | Returns the number of IDocuments contained by this IDocumentNavigator
Not synchronized on the assumption that size field of a HashMap always has a legitimate
value (either the size of the current state or the size of its state before some concurrent
operation started. Executes in any thread. Assume size() always returns a valid (perhaps stale) value.
the number of documents within this navigator. |
getDocumentSelectedCount | public int getDocumentSelectedCount()(Code) | | the number of documents selected. Only runs in event thread. |
getDocuments | public Enumeration<ItemT> getDocuments()(Code) | | Returns all the IDocuments contained in this navigator. Does not assert any type of ordering on
the returned structure. Executes in any thread.
an INavigatorItem enumeration of this navigator's contents. |
getDocumentsInBin | public Enumeration<ItemT> getDocumentsInBin(String binName)(Code) | | Returns all the IDocuments contained in the specified bin.
Parameters: binName - name of bin an INavigatorItem enumeration of this navigator's contents. |
getFirst | public ItemT getFirst()(Code) | | Returns the first document in the collection (using enumeration order). Executes in any thread.
the INavigatorItem which comes before doc |
getGroupSelectedCount | public int getGroupSelectedCount()(Code) | | the number of groups selected. Only runs in event thread. |
getLast | public ItemT getLast()(Code) | | Returns the last document in the collection (using enumeration order). Executes in any thread.
the INavigatorItem which comes before doc |
getModelLock | public Object getModelLock()(Code) | | Returns the model lock.
|
getNavigatorListeners | public Collection<INavigationListener<? super ItemT>> getNavigatorListeners()(Code) | | Returns a collection of all navigator listeners. Note: this is a dangerous method since it exposes a shared data
structure that must be synchronized with _model.
|
getNext | public ItemT getNext(ItemT doc)(Code) | | Returns the next document in the collection (using enumeration order). Executes in any thread.
Parameters: doc - the INavigatorItem of interest the INavigatorItem which comes after doc |
getPrevious | public ItemT getPrevious(ItemT doc)(Code) | | Returns the previous document in the collection (using enumeration order). Executes in any thread.
Parameters: doc - the INavigatorItem of interest the INavigatorItem which comes before doc |
getRenderer | public Component getRenderer()(Code) | | Returns a renderer for this object.
|
getSelectedDocuments | public java.util.List<ItemT> getSelectedDocuments()(Code) | | the documents currently selected. Only runs in event thread. |
getSelectedFolders | public java.util.List<File> getSelectedFolders()(Code) | | the folders currently selected. Only runs in event thread. |
isDocumentSelected | public boolean isDocumentSelected()(Code) | | true if at least one document is selected. Only runs in event thread. |
isEmpty | public boolean isEmpty()(Code) | | Returns whether this IDocumentNavigator contains any IDocuments .
true if this navigator contains one or more documents, else false .Executes in any thread. Assume isEmpty() always returns a valid (perhaps stale) value. |
isGroupSelected | public boolean isGroupSelected()(Code) | | true if at least one group of INavigatorItems is selected. Only runs in event thread. |
isNextChangeModelInitiated | public boolean isNextChangeModelInitiated()(Code) | | whether the next selection change is model-initiated (true) or user-initiated (false). |
isRootSelected | public boolean isRootSelected()(Code) | | Returns true if the root is selected. Only runs in event thread.
|
isSelectedAt | public boolean isSelectedAt(int x, int y)(Code) | | Returns true if the item at the x,y coordinate of the navigator pane is currently selected.
Only runs in event thread. O
Parameters: x - the x coordinate of the navigator pane Parameters: y - the y coordinate of the navigator pane true if the item is currently selected |
isSelectedInGroup | public boolean isSelectedInGroup(ItemT i)(Code) | | true if the INavigatorItem is in a selected group, if at leastone group is selected. Only runs in event thread. |
isTopLevelGroupSelected | public boolean isTopLevelGroupSelected()(Code) | | Returns true if at least one top level group is selected. Only runs in event thread.
|
refreshDocument | public void refreshDocument(ItemT doc, String path)(Code) | | Resets a given INavigatorItem in the tree. Updates the placement of the item and its display
to reflect any changes made in the model. Only executes in the event thread.
Note: full synchronization commented out because this operation is only performed in the event thread. The
synchronized sections must be atomic but the rest of the code can run concurrently with read operations in
other threads.
Parameters: doc - the document to be refreshed Parameters: path - the path to the parent folder for this document throws: IllegalArgumentException - if this navigator contains no document equal to doc. |
removeDocument | public ItemT removeDocument(ItemT doc)(Code) | | Removes a given INavigatorItem from this navigator. Removes all INavigatorItem s
from this navigator that are "equal" (using .equals(...) ) to the passed argument. Any of
the removed documents may be returned by this method. If the NavigatorItem is found in the navigator, null
is returned. Only executes from event thread.
Parameters: doc - the docment to be removed doc a document removed from this navigator as a result of invoking this method. throws: IllegalArgumentException - if this navigator contains no document equal to doc |
removeNavigationListener | public void removeNavigationListener(INavigationListener<? super ItemT> listener)(Code) | | Removes the given listener from observing this navigator. After invoking this method, all observers
watching this navigator "equal" (as tested by the == operator) will no longer receive observable dispatches.
Only executes in event thread.
Parameters: listener - the listener to be removed from this navigator |
requestSelectionUpdate | public void requestSelectionUpdate(ItemT ini)(Code) | | If the currently selected item is not an INavigatorItem, select the one given. Only runs in event thread.
|
selectDocumentAt | public boolean selectDocumentAt(int x, int y)(Code) | | Selects the document at the x,y coordinate of the navigator pane and sets it to be the currently active
document. Only runs in event thread. O
Parameters: x - the x coordinate of the navigator pane Parameters: y - the y coordinate of the navigator pane |
setActiveDoc | public void setActiveDoc(ItemT doc)(Code) | | Sets the specified document to be active (current). Only executes in the event thread.
|
setBackground | public void setBackground(Color c)(Code) | | Sets the background color of this tree
Parameters: c - the color for the background |
setDisplayManager | public void setDisplayManager(DisplayManager<? super ItemT> manager)(Code) | | Sets the display manager that is used to select icons for the leaves of the tree.
This does not apply to the inner nodes or the root.
|
setForeground | public void setForeground(Color c)(Code) | | Sets the foreground color of this JTree
Parameters: c - the color to set to |
setNextChangeModelInitiated | public void setNextChangeModelInitiated(boolean b)(Code) | | Marks the next selection change as model-initiated (true) or user-initiated (false; default).
|
setRootIcon | public void setRootIcon(Icon ico)(Code) | | Sets the icon to be displayed at the root of the tree
|
treeCollapsed | public void treeCollapsed(TreeExpansionEvent event)(Code) | | Called whenever an item in the tree has been collapsed. Only runs in event thread (except when testing).
|
treeExpanded | public void treeExpanded(TreeExpansionEvent event)(Code) | | Called whenever an item in the tree has been expanded. Only runs in event thread.
|
valueChanged | public void valueChanged(TreeSelectionEvent e)(Code) | | Called whenever the value of the selection changes. Only runs in event thread. Runs _gainVisitor in global model
Parameters: e - the event that characterizes the change. |
Methods inherited from javax.swing.JTree | public void addSelectionInterval(int index0, int index1)(Code)(Java Doc) public void addSelectionPath(TreePath path)(Code)(Java Doc) public void addSelectionPaths(TreePath[] paths)(Code)(Java Doc) public void addSelectionRow(int row)(Code)(Java Doc) public void addSelectionRows(int[] rows)(Code)(Java Doc) public void addTreeExpansionListener(TreeExpansionListener tel)(Code)(Java Doc) public void addTreeSelectionListener(TreeSelectionListener tsl)(Code)(Java Doc) public void addTreeWillExpandListener(TreeWillExpandListener tel)(Code)(Java Doc) public void cancelEditing()(Code)(Java Doc) public void clearSelection()(Code)(Java Doc) protected void clearToggledPaths()(Code)(Java Doc) public void collapsePath(TreePath path)(Code)(Java Doc) public void collapseRow(int row)(Code)(Java Doc) public String convertValueToText(Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus)(Code)(Java Doc) protected static TreeModel createTreeModel(Object value)(Code)(Java Doc) protected TreeModelListener createTreeModelListener()(Code)(Java Doc) public void expandPath(TreePath path)(Code)(Java Doc) public void expandRow(int row)(Code)(Java Doc) public void fireTreeCollapsed(TreePath path)(Code)(Java Doc) public void fireTreeExpanded(TreePath path)(Code)(Java Doc) public void fireTreeWillCollapse(TreePath path) throws ExpandVetoException(Code)(Java Doc) public void fireTreeWillExpand(TreePath path) throws ExpandVetoException(Code)(Java Doc) protected void fireValueChanged(TreeSelectionEvent e)(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) public TreePath getAnchorSelectionPath()(Code)(Java Doc) public TreeCellEditor getCellEditor()(Code)(Java Doc) public TreeCellRenderer getCellRenderer()(Code)(Java Doc) public TreePath getClosestPathForLocation(int x, int y)(Code)(Java Doc) public int getClosestRowForLocation(int x, int y)(Code)(Java Doc) protected static TreeModel getDefaultTreeModel()(Code)(Java Doc) protected Enumeration<TreePath> getDescendantToggledPaths(TreePath parent)(Code)(Java Doc) public boolean getDragEnabled()(Code)(Java Doc) final public DropLocation getDropLocation()(Code)(Java Doc) final public DropMode getDropMode()(Code)(Java Doc) public TreePath getEditingPath()(Code)(Java Doc) public Enumeration<TreePath> getExpandedDescendants(TreePath parent)(Code)(Java Doc) public boolean getExpandsSelectedPaths()(Code)(Java Doc) public boolean getInvokesStopCellEditing()(Code)(Java Doc) public Object getLastSelectedPathComponent()(Code)(Java Doc) public TreePath getLeadSelectionPath()(Code)(Java Doc) public int getLeadSelectionRow()(Code)(Java Doc) public int getMaxSelectionRow()(Code)(Java Doc) public int getMinSelectionRow()(Code)(Java Doc) public TreeModel getModel()(Code)(Java Doc) public TreePath getNextMatch(String prefix, int startingRow, Position.Bias bias)(Code)(Java Doc) protected TreePath[] getPathBetweenRows(int index0, int index1)(Code)(Java Doc) public Rectangle getPathBounds(TreePath path)(Code)(Java Doc) public TreePath getPathForLocation(int x, int y)(Code)(Java Doc) public TreePath getPathForRow(int row)(Code)(Java Doc) public Dimension getPreferredScrollableViewportSize()(Code)(Java Doc) public Rectangle getRowBounds(int row)(Code)(Java Doc) public int getRowCount()(Code)(Java Doc) public int getRowForLocation(int x, int y)(Code)(Java Doc) public int getRowForPath(TreePath path)(Code)(Java Doc) public int getRowHeight()(Code)(Java Doc) public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction)(Code)(Java Doc) public boolean getScrollableTracksViewportHeight()(Code)(Java Doc) public boolean getScrollableTracksViewportWidth()(Code)(Java Doc) public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction)(Code)(Java Doc) public boolean getScrollsOnExpand()(Code)(Java Doc) public int getSelectionCount()(Code)(Java Doc) public TreeSelectionModel getSelectionModel()(Code)(Java Doc) public TreePath getSelectionPath()(Code)(Java Doc) public TreePath[] getSelectionPaths()(Code)(Java Doc) public int[] getSelectionRows()(Code)(Java Doc) public boolean getShowsRootHandles()(Code)(Java Doc) public int getToggleClickCount()(Code)(Java Doc) public String getToolTipText(MouseEvent event)(Code)(Java Doc) public TreeExpansionListener[] getTreeExpansionListeners()(Code)(Java Doc) public TreeSelectionListener[] getTreeSelectionListeners()(Code)(Java Doc) public TreeWillExpandListener[] getTreeWillExpandListeners()(Code)(Java Doc) public TreeUI getUI()(Code)(Java Doc) public String getUIClassID()(Code)(Java Doc) public int getVisibleRowCount()(Code)(Java Doc) public boolean hasBeenExpanded(TreePath path)(Code)(Java Doc) public boolean isCollapsed(TreePath path)(Code)(Java Doc) public boolean isCollapsed(int row)(Code)(Java Doc) public boolean isEditable()(Code)(Java Doc) public boolean isEditing()(Code)(Java Doc) public boolean isExpanded(TreePath path)(Code)(Java Doc) public boolean isExpanded(int row)(Code)(Java Doc) public boolean isFixedRowHeight()(Code)(Java Doc) public boolean isLargeModel()(Code)(Java Doc) public boolean isPathEditable(TreePath path)(Code)(Java Doc) public boolean isPathSelected(TreePath path)(Code)(Java Doc) public boolean isRootVisible()(Code)(Java Doc) public boolean isRowSelected(int row)(Code)(Java Doc) public boolean isSelectionEmpty()(Code)(Java Doc) public boolean isVisible(TreePath path)(Code)(Java Doc) public void makeVisible(TreePath path)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) protected boolean removeDescendantSelectedPaths(TreePath path, boolean includePath)(Code)(Java Doc) protected void removeDescendantToggledPaths(Enumeration<TreePath> toRemove)(Code)(Java Doc) public void removeSelectionInterval(int index0, int index1)(Code)(Java Doc) public void removeSelectionPath(TreePath path)(Code)(Java Doc) public void removeSelectionPaths(TreePath[] paths)(Code)(Java Doc) public void removeSelectionRow(int row)(Code)(Java Doc) public void removeSelectionRows(int[] rows)(Code)(Java Doc) public void removeTreeExpansionListener(TreeExpansionListener tel)(Code)(Java Doc) public void removeTreeSelectionListener(TreeSelectionListener tsl)(Code)(Java Doc) public void removeTreeWillExpandListener(TreeWillExpandListener tel)(Code)(Java Doc) public void scrollPathToVisible(TreePath path)(Code)(Java Doc) public void scrollRowToVisible(int row)(Code)(Java Doc) public void setAnchorSelectionPath(TreePath newPath)(Code)(Java Doc) public void setCellEditor(TreeCellEditor cellEditor)(Code)(Java Doc) public void setCellRenderer(TreeCellRenderer x)(Code)(Java Doc) public void setDragEnabled(boolean b)(Code)(Java Doc) final public void setDropMode(DropMode dropMode)(Code)(Java Doc) public void setEditable(boolean flag)(Code)(Java Doc) protected void setExpandedState(TreePath path, boolean state)(Code)(Java Doc) public void setExpandsSelectedPaths(boolean newValue)(Code)(Java Doc) public void setInvokesStopCellEditing(boolean newValue)(Code)(Java Doc) public void setLargeModel(boolean newValue)(Code)(Java Doc) public void setLeadSelectionPath(TreePath newPath)(Code)(Java Doc) public void setModel(TreeModel newModel)(Code)(Java Doc) public void setRootVisible(boolean rootVisible)(Code)(Java Doc) public void setRowHeight(int rowHeight)(Code)(Java Doc) public void setScrollsOnExpand(boolean newValue)(Code)(Java Doc) public void setSelectionInterval(int index0, int index1)(Code)(Java Doc) public void setSelectionModel(TreeSelectionModel selectionModel)(Code)(Java Doc) public void setSelectionPath(TreePath path)(Code)(Java Doc) public void setSelectionPaths(TreePath[] paths)(Code)(Java Doc) public void setSelectionRow(int row)(Code)(Java Doc) public void setSelectionRows(int[] rows)(Code)(Java Doc) public void setShowsRootHandles(boolean newValue)(Code)(Java Doc) public void setToggleClickCount(int clickCount)(Code)(Java Doc) public void setUI(TreeUI ui)(Code)(Java Doc) public void setVisibleRowCount(int newCount)(Code)(Java Doc) public void startEditingAtPath(TreePath path)(Code)(Java Doc) public boolean stopEditing()(Code)(Java Doc) public void treeDidChange()(Code)(Java Doc) public void updateUI()(Code)(Java Doc)
|
Methods inherited from javax.swing.JComponent | public void addAncestorListener(AncestorListener listener)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public synchronized void addVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc) public void computeVisibleRect(Rectangle visibleRect)(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public JToolTip createToolTip()(Code)(Java Doc) public void disable()(Code)(Java Doc) public void enable()(Code)(Java Doc) public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc) protected void fireVetoableChange(String propertyName, Object oldValue, Object newValue) throws java.beans.PropertyVetoException(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) public ActionListener getActionForKeyStroke(KeyStroke aKeyStroke)(Code)(Java Doc) final public ActionMap getActionMap()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public AncestorListener[] getAncestorListeners()(Code)(Java Doc) public boolean getAutoscrolls()(Code)(Java Doc) public int getBaseline(int width, int height)(Code)(Java Doc) public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc) public Border getBorder()(Code)(Java Doc) public Rectangle getBounds(Rectangle rv)(Code)(Java Doc) final public Object getClientProperty(Object key)(Code)(Java Doc) protected Graphics getComponentGraphics(Graphics g)(Code)(Java Doc) public JPopupMenu getComponentPopupMenu()(Code)(Java Doc) public int getConditionForKeyStroke(KeyStroke aKeyStroke)(Code)(Java Doc) public int getDebugGraphicsOptions()(Code)(Java Doc) public static Locale getDefaultLocale()(Code)(Java Doc) public FontMetrics getFontMetrics(Font font)(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public boolean getInheritsPopupMenu()(Code)(Java Doc) final public InputMap getInputMap(int condition)(Code)(Java Doc) final public InputMap getInputMap()(Code)(Java Doc) public InputVerifier getInputVerifier()(Code)(Java Doc) public Insets getInsets()(Code)(Java Doc) public Insets getInsets(Insets insets)(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Point getLocation(Point rv)(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public Component getNextFocusableComponent()(Code)(Java Doc) public Point getPopupLocation(MouseEvent event)(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public KeyStroke[] getRegisteredKeyStrokes()(Code)(Java Doc) public JRootPane getRootPane()(Code)(Java Doc) public Dimension getSize(Dimension rv)(Code)(Java Doc) public Point getToolTipLocation(MouseEvent event)(Code)(Java Doc) public String getToolTipText()(Code)(Java Doc) public String getToolTipText(MouseEvent event)(Code)(Java Doc) public Container getTopLevelAncestor()(Code)(Java Doc) public TransferHandler getTransferHandler()(Code)(Java Doc) public String getUIClassID()(Code)(Java Doc) public boolean getVerifyInputWhenFocusTarget()(Code)(Java Doc) public synchronized VetoableChangeListener[] getVetoableChangeListeners()(Code)(Java Doc) public Rectangle getVisibleRect()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public int getX()(Code)(Java Doc) public int getY()(Code)(Java Doc) public void grabFocus()(Code)(Java Doc) public boolean isDoubleBuffered()(Code)(Java Doc) public static boolean isLightweightComponent(Component c)(Code)(Java Doc) public boolean isManagingFocus()(Code)(Java Doc) public boolean isOpaque()(Code)(Java Doc) public boolean isOptimizedDrawingEnabled()(Code)(Java Doc) final public boolean isPaintingForPrint()(Code)(Java Doc) public boolean isPaintingTile()(Code)(Java Doc) public boolean isRequestFocusEnabled()(Code)(Java Doc) public boolean isValidateRoot()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) protected void paintBorder(Graphics g)(Code)(Java Doc) protected void paintChildren(Graphics g)(Code)(Java Doc) protected void paintComponent(Graphics g)(Code)(Java Doc) public void paintImmediately(int x, int y, int w, int h)(Code)(Java Doc) public void paintImmediately(Rectangle r)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printAll(Graphics g)(Code)(Java Doc) protected void printBorder(Graphics g)(Code)(Java Doc) protected void printChildren(Graphics g)(Code)(Java Doc) protected void printComponent(Graphics g)(Code)(Java Doc) protected void processComponentKeyEvent(KeyEvent e)(Code)(Java Doc) protected boolean processKeyBinding(KeyStroke ks, KeyEvent e, int condition, boolean pressed)(Code)(Java Doc) protected void processKeyEvent(KeyEvent e)(Code)(Java Doc) protected void processMouseEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc) final public void putClientProperty(Object key, Object value)(Code)(Java Doc) public void registerKeyboardAction(ActionListener anAction, String aCommand, KeyStroke aKeyStroke, int aCondition)(Code)(Java Doc) public void registerKeyboardAction(ActionListener anAction, KeyStroke aKeyStroke, int aCondition)(Code)(Java Doc) public void removeAncestorListener(AncestorListener listener)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public synchronized void removeVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc) public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc) public void repaint(Rectangle r)(Code)(Java Doc) public boolean requestDefaultFocus()(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) public boolean requestFocus(boolean temporary)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) public void resetKeyboardActions()(Code)(Java Doc) public void reshape(int x, int y, int w, int h)(Code)(Java Doc) public void revalidate()(Code)(Java Doc) public void scrollRectToVisible(Rectangle aRect)(Code)(Java Doc) final public void setActionMap(ActionMap am)(Code)(Java Doc) public void setAlignmentX(float alignmentX)(Code)(Java Doc) public void setAlignmentY(float alignmentY)(Code)(Java Doc) public void setAutoscrolls(boolean autoscrolls)(Code)(Java Doc) public void setBackground(Color bg)(Code)(Java Doc) public void setBorder(Border border)(Code)(Java Doc) public void setComponentPopupMenu(JPopupMenu popup)(Code)(Java Doc) public void setDebugGraphicsOptions(int debugOptions)(Code)(Java Doc) public static void setDefaultLocale(Locale l)(Code)(Java Doc) public void setDoubleBuffered(boolean aFlag)(Code)(Java Doc) public void setEnabled(boolean enabled)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFont(Font font)(Code)(Java Doc) public void setForeground(Color fg)(Code)(Java Doc) public void setInheritsPopupMenu(boolean value)(Code)(Java Doc) final public void setInputMap(int condition, InputMap map)(Code)(Java Doc) public void setInputVerifier(InputVerifier inputVerifier)(Code)(Java Doc) public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc) public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc) public void setNextFocusableComponent(Component aComponent)(Code)(Java Doc) public void setOpaque(boolean isOpaque)(Code)(Java Doc) public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc) public void setRequestFocusEnabled(boolean requestFocusEnabled)(Code)(Java Doc) public void setToolTipText(String text)(Code)(Java Doc) public void setTransferHandler(TransferHandler newHandler)(Code)(Java Doc) protected void setUI(ComponentUI newUI)(Code)(Java Doc) public void setVerifyInputWhenFocusTarget(boolean verifyInputWhenFocusTarget)(Code)(Java Doc) public void setVisible(boolean aFlag)(Code)(Java Doc) public void unregisterKeyboardAction(KeyStroke aKeyStroke)(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void updateUI()(Code)(Java Doc)
|
Methods inherited from java.awt.Container | public Component add(Component comp)(Code)(Java Doc) public Component add(String name, Component comp)(Code)(Java Doc) public Component add(Component comp, int index)(Code)(Java Doc) public void add(Component comp, Object constraints)(Code)(Java Doc) public void add(Component comp, Object constraints, int index)(Code)(Java Doc) public synchronized void addContainerListener(ContainerListener l)(Code)(Java Doc) protected void addImpl(Component comp, Object constraints, int index)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) public int countComponents()(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public Component findComponentAt(int x, int y)(Code)(Java Doc) public Component findComponentAt(Point p)(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public Component getComponent(int n)(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public int getComponentCount()(Code)(Java Doc) public int getComponentZOrder(Component comp)(Code)(Java Doc) public Component[] getComponents()(Code)(Java Doc) public synchronized ContainerListener[] getContainerListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public FocusTraversalPolicy getFocusTraversalPolicy()(Code)(Java Doc) public Insets getInsets()(Code)(Java Doc) public LayoutManager getLayout()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public Point getMousePosition(boolean allowChildren) throws HeadlessException(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public Insets insets()(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isAncestorOf(Component c)(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusCycleRoot()(Code)(Java Doc) final public boolean isFocusTraversalPolicyProvider()(Code)(Java Doc) public boolean isFocusTraversalPolicySet()(Code)(Java Doc) public void layout()(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintComponents(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printComponents(Graphics g)(Code)(Java Doc) protected void processContainerEvent(ContainerEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) public void remove(int index)(Code)(Java Doc) public void remove(Component comp)(Code)(Java Doc) public void removeAll()(Code)(Java Doc) public synchronized void removeContainerListener(ContainerListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public void setComponentZOrder(Component comp, int index)(Code)(Java Doc) public void setFocusCycleRoot(boolean focusCycleRoot)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalPolicy(FocusTraversalPolicy policy)(Code)(Java Doc) final public void setFocusTraversalPolicyProvider(boolean provider)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setLayout(LayoutManager mgr)(Code)(Java Doc) public void transferFocusDownCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void validate()(Code)(Java Doc) protected void validateTree()(Code)(Java Doc)
|
Methods inherited from java.awt.Component | public boolean action(Event evt, Object what)(Code)(Java Doc) public void add(PopupMenu popup)(Code)(Java Doc) public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc) public void addHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void addHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void addInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void addMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) public Rectangle bounds()(Code)(Java Doc) public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc) public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public boolean contains(Point p)(Code)(Java Doc) public Image createImage(ImageProducer producer)(Code)(Java Doc) public Image createImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void disable()(Code)(Java Doc) final protected void disableEvents(long eventsToDisable)(Code)(Java Doc) final public void dispatchEvent(AWTEvent e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public void enable()(Code)(Java Doc) public void enable(boolean b)(Code)(Java Doc) final protected void enableEvents(long eventsToEnable)(Code)(Java Doc) public void enableInputMethods(boolean enable)(Code)(Java Doc) protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, byte oldValue, byte newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, short oldValue, short newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, long oldValue, long newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, float oldValue, float newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, double oldValue, double newValue)(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public Color getBackground()(Code)(Java Doc) public int getBaseline(int width, int height)(Code)(Java Doc) public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc) public Rectangle getBounds()(Code)(Java Doc) public Rectangle getBounds(Rectangle rv)(Code)(Java Doc) public ColorModel getColorModel()(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public synchronized ComponentListener[] getComponentListeners()(Code)(Java Doc) public ComponentOrientation getComponentOrientation()(Code)(Java Doc) public Cursor getCursor()(Code)(Java Doc) public synchronized DropTarget getDropTarget()(Code)(Java Doc) public Container getFocusCycleRootAncestor()(Code)(Java Doc) public synchronized FocusListener[] getFocusListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public boolean getFocusTraversalKeysEnabled()(Code)(Java Doc) public Font getFont()(Code)(Java Doc) public FontMetrics getFontMetrics(Font font)(Code)(Java Doc) public Color getForeground()(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public synchronized HierarchyBoundsListener[] getHierarchyBoundsListeners()(Code)(Java Doc) public synchronized HierarchyListener[] getHierarchyListeners()(Code)(Java Doc) public boolean getIgnoreRepaint()(Code)(Java Doc) public InputContext getInputContext()(Code)(Java Doc) public synchronized InputMethodListener[] getInputMethodListeners()(Code)(Java Doc) public InputMethodRequests getInputMethodRequests()(Code)(Java Doc) public synchronized KeyListener[] getKeyListeners()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Locale getLocale()(Code)(Java Doc) public Point getLocation()(Code)(Java Doc) public Point getLocation(Point rv)(Code)(Java Doc) public Point getLocationOnScreen()(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public synchronized MouseListener[] getMouseListeners()(Code)(Java Doc) public synchronized MouseMotionListener[] getMouseMotionListeners()(Code)(Java Doc) public Point getMousePosition() throws HeadlessException(Code)(Java Doc) public synchronized MouseWheelListener[] getMouseWheelListeners()(Code)(Java Doc) public String getName()(Code)(Java Doc) public Container getParent()(Code)(Java Doc) public ComponentPeer getPeer()(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc) public Dimension getSize()(Code)(Java Doc) public Dimension getSize(Dimension rv)(Code)(Java Doc) public Toolkit getToolkit()(Code)(Java Doc) final public Object getTreeLock()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public int getX()(Code)(Java Doc) public int getY()(Code)(Java Doc) public boolean gotFocus(Event evt, Object what)(Code)(Java Doc) public boolean handleEvent(Event evt)(Code)(Java Doc) public boolean hasFocus()(Code)(Java Doc) public void hide()(Code)(Java Doc) public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code)(Java Doc) public boolean inside(int x, int y)(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isBackgroundSet()(Code)(Java Doc) public boolean isCursorSet()(Code)(Java Doc) public boolean isDisplayable()(Code)(Java Doc) public boolean isDoubleBuffered()(Code)(Java Doc) public boolean isEnabled()(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusOwner()(Code)(Java Doc) public boolean isFocusTraversable()(Code)(Java Doc) public boolean isFocusable()(Code)(Java Doc) public boolean isFontSet()(Code)(Java Doc) public boolean isForegroundSet()(Code)(Java Doc) public boolean isLightweight()(Code)(Java Doc) public boolean isMaximumSizeSet()(Code)(Java Doc) public boolean isMinimumSizeSet()(Code)(Java Doc) public boolean isOpaque()(Code)(Java Doc) public boolean isPreferredSizeSet()(Code)(Java Doc) public boolean isShowing()(Code)(Java Doc) public boolean isValid()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) public boolean keyDown(Event evt, int key)(Code)(Java Doc) public boolean keyUp(Event evt, int key)(Code)(Java Doc) public void layout()(Code)(Java Doc) public void list()(Code)(Java Doc) public void list(PrintStream out)(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Point location()(Code)(Java Doc) public boolean lostFocus(Event evt, Object what)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc) public void move(int x, int y)(Code)(Java Doc) public void nextFocus()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintAll(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public boolean postEvent(Event e)(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc) public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printAll(Graphics g)(Code)(Java Doc) protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) protected void processFocusEvent(FocusEvent e)(Code)(Java Doc) protected void processHierarchyBoundsEvent(HierarchyEvent e)(Code)(Java Doc) protected void processHierarchyEvent(HierarchyEvent e)(Code)(Java Doc) protected void processInputMethodEvent(InputMethodEvent e)(Code)(Java Doc) protected void processKeyEvent(KeyEvent e)(Code)(Java Doc) protected void processMouseEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseWheelEvent(MouseWheelEvent e)(Code)(Java Doc) public void remove(MenuComponent popup)(Code)(Java Doc) public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc) public void removeHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void removeHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void removeInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void removeMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void repaint()(Code)(Java Doc) public void repaint(long tm)(Code)(Java Doc) public void repaint(int x, int y, int width, int height)(Code)(Java Doc) public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) protected boolean requestFocus(boolean temporary)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) public void reshape(int x, int y, int width, int height)(Code)(Java Doc) public void resize(int width, int height)(Code)(Java Doc) public void resize(Dimension d)(Code)(Java Doc) public void setBackground(Color c)(Code)(Java Doc) public void setBounds(int x, int y, int width, int height)(Code)(Java Doc) public void setBounds(Rectangle r)(Code)(Java Doc) public void setComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public void setCursor(Cursor cursor)(Code)(Java Doc) public synchronized void setDropTarget(DropTarget dt)(Code)(Java Doc) public void setEnabled(boolean b)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalKeysEnabled(boolean focusTraversalKeysEnabled)(Code)(Java Doc) public void setFocusable(boolean focusable)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setForeground(Color c)(Code)(Java Doc) public void setIgnoreRepaint(boolean ignoreRepaint)(Code)(Java Doc) public void setLocale(Locale l)(Code)(Java Doc) public void setLocation(int x, int y)(Code)(Java Doc) public void setLocation(Point p)(Code)(Java Doc) public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc) public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc) public void setName(String name)(Code)(Java Doc) public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc) public void setSize(int width, int height)(Code)(Java Doc) public void setSize(Dimension d)(Code)(Java Doc) public void setVisible(boolean b)(Code)(Java Doc) public void show()(Code)(Java Doc) public void show(boolean b)(Code)(Java Doc) public Dimension size()(Code)(Java Doc) public String toString()(Code)(Java Doc) public void transferFocus()(Code)(Java Doc) public void transferFocusBackward()(Code)(Java Doc) public void transferFocusUpCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void validate()(Code)(Java Doc)
|
|
|