Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Dykstal2006-09-15 19:15:28 +0000
committerDavid Dykstal2006-09-15 19:15:28 +0000
commitaf8cff0f20bb37cbd217a44be4105218c88f15b6 (patch)
tree2b16cbdc7e8ad013594557d59318ce6e8a2935c4
parent68d8ec8366e07ff4a852033be2e65e94ebc4e537 (diff)
downloadorg.eclipse.tm-af8cff0f20bb37cbd217a44be4105218c88f15b6.tar.gz
org.eclipse.tm-af8cff0f20bb37cbd217a44be4105218c88f15b6.tar.xz
org.eclipse.tm-af8cff0f20bb37cbd217a44be4105218c88f15b6.zip
[cleanup] format and javadoc
-rw-r--r--rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/ISystemTree.java106
1 files changed, 63 insertions, 43 deletions
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/ISystemTree.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/ISystemTree.java
index 28e5d0e5d..8d954942a 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/ISystemTree.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/ISystemTree.java
@@ -15,85 +15,105 @@
********************************************************************************/
package org.eclipse.rse.ui.view;
+
import org.eclipse.swt.widgets.Item;
+
/**
* To drive our GUI we find ourselves adding additional useful methods on top of the
- * JFace tree viewer, in our subclasses. We capture those here in an interface so they
- * can be implemented by other viewers that wish to fully drive our UI. Typically this
- * is for interesting properties in the property sheet.
- * <p>
- * Ultimately, these are methods that AbstractTreeViewer itself should have!
+ * JFace tree viewer in our subclasses. We capture those here in an interface so they
+ * can be implemented by other viewers that wish to fully drive our UI. Typically this
+ * is for interesting properties in the property sheet.
*/
-public interface ISystemTree
-{
-
+public interface ISystemTree {
/**
* This is called to ensure all elements in a multiple-selection have the same parent in the
- * tree viewer. If they don't we automatically disable all actions.
- * <p>
- * Designed to be as fast as possible by going directly to the SWT widgets
+ * tree viewer. Typically used to disable actions that must take place on a coordinated
+ * selection.
+ * @return true if the elements of the selection in the viewer all have the same parent
*/
public boolean sameParent();
- /**
- * Called to select an object within the tree, and optionally expand it
- */
- public void select(Object element, boolean expand);
+
/**
- * Return the number of immediate children in the tree, for the given tree node
+ * Called to select an object within the tree, and optionally expand it.
+ * @param element the element in the tree to select
+ * @param expand true if the element is to be expanded
*/
- public int getChildCount(Object element);
+ public void select(Object element, boolean expand);
+
+ /**
+ * @param element the element in the tree to query
+ * @return the number of immediate children in the tree, for the given tree node
+ */
+ public int getChildCount(Object element);
+
/**
* This is called to accurately get the parent object for the current selection
- * for this viewer.
- * <p>
- * The getParent() method in the adapter is very unreliable... adapters can't be sure
- * of the context which can change via filtering and view options.
+ * for this viewer.
+ * The getParent() method in the adapter is unreliable since adapted objects are
+ * unaware of the context which can change via filtering and view options.
+ * @return the parent of the selection
*/
public Object getSelectedParent();
+
/**
* This returns the element immediately before the first selected element in this tree level.
* Often needed for enablement decisions for move up actions.
+ * @return the object prior to the selection, null if there is none
*/
public Object getPreviousElement();
+
/**
* This returns the element immediately after the last selected element in this tree level
* Often needed for enablement decisions for move down actions.
+ * @return the object after the selection, null if there is none
*/
public Object getNextElement();
+
/**
* This is called to walk the tree back up to the roots and return the visible root
- * node for the first selected object.
+ * node for the first selected object.
+ * @return the root object
*/
public Object getRootParent();
+
/**
* This returns an array containing each element in the tree, up to but not including the root.
* The array is in reverse order, starting at the leaf and going up.
+ * @param element the element from which to begin
+ * @return the array of objects in the path from leaf to root. Excluding the leaf and root.
*/
public Object[] getElementNodes(Object element);
+
/**
* Helper method to determine if a given object is currently selected.
- * Does consider if a child node of the given object is currently selected.
+ * Considers an element to be "selected" if a child node of the given object is currently selected.
+ * @param parentElement the element to query
+ * @return true if the element covers any portion of the selection
*/
public boolean isSelectedOrChildSelected(Object parentElement);
- /**
- * Called when a property is updated and we need to inform the Property Sheet viewer.
- * There is no formal mechanism for this so we simulate a selection changed event as
- * this is the only event the property sheet listens for.
- */
- public void updatePropertySheet();
- /**
- * Returns the tree item of the first selected object. Used for setViewerItem in a resource
- * change event.
- */
- public Item getViewerItem();
-
- /**
- * Returns true if any of the selected items are currently expanded
- */
- public boolean areAnySelectedItemsExpanded();
- /**
- * Returns true if any of the selected items are expandable but not yet expanded
- */
- public boolean areAnySelectedItemsExpandable();
+
+ /**
+ * Called when a property is updated and we need to inform the Property Sheet viewer.
+ * There is no formal mechanism for this so we simulate a selection changed event as
+ * this is the only event the property sheet listens for.
+ */
+ public void updatePropertySheet();
+
+ /**
+ * Returns the tree item of the first selected object. Used for setViewerItem in a resource
+ * change event.
+ * @return the item
+ */
+ public Item getViewerItem();
+
+ /**
+ * @return true if any of the selected items are currently expanded
+ */
+ public boolean areAnySelectedItemsExpanded();
+
+ /**
+ * @return true if any of the selected items are expandable but not yet expanded
+ */
+ public boolean areAnySelectedItemsExpandable();
} \ No newline at end of file

Back to the top