1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 19:35:36 +02:00

[cleanup] format and javadoc

This commit is contained in:
David Dykstal 2006-09-15 19:15:28 +00:00
parent 68d8ec8366
commit af8cff0f20

View file

@ -15,85 +15,105 @@
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.ui.view; package org.eclipse.rse.ui.view;
import org.eclipse.swt.widgets.Item; import org.eclipse.swt.widgets.Item;
/** /**
* To drive our GUI we find ourselves adding additional useful methods on top of the * 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 * 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 * can be implemented by other viewers that wish to fully drive our UI. Typically this
* is for interesting properties in the property sheet. * is for interesting properties in the property sheet.
* <p>
* Ultimately, these are methods that AbstractTreeViewer itself should have!
*/ */
public interface ISystemTree public interface ISystemTree {
{
/** /**
* This is called to ensure all elements in a multiple-selection have the same parent in the * 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. * tree viewer. Typically used to disable actions that must take place on a coordinated
* <p> * selection.
* Designed to be as fast as possible by going directly to the SWT widgets * @return true if the elements of the selection in the viewer all have the same parent
*/ */
public boolean sameParent(); public boolean sameParent();
/** /**
* Called to select an object within the tree, and optionally expand it * 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 void select(Object element, boolean expand); public void select(Object element, boolean expand);
/** /**
* Return the number of immediate children in the tree, for the given tree node * @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); public int getChildCount(Object element);
/** /**
* This is called to accurately get the parent object for the current selection * This is called to accurately get the parent object for the current selection
* for this viewer. * for this viewer.
* <p> * The getParent() method in the adapter is unreliable since adapted objects are
* The getParent() method in the adapter is very unreliable... adapters can't be sure * unaware of the context which can change via filtering and view options.
* of the context which can change via filtering and view options. * @return the parent of the selection
*/ */
public Object getSelectedParent(); public Object getSelectedParent();
/** /**
* This returns the element immediately before the first selected element in this tree level. * This returns the element immediately before the first selected element in this tree level.
* Often needed for enablement decisions for move up actions. * Often needed for enablement decisions for move up actions.
* @return the object prior to the selection, null if there is none
*/ */
public Object getPreviousElement(); public Object getPreviousElement();
/** /**
* This returns the element immediately after the last selected element in this tree level * This returns the element immediately after the last selected element in this tree level
* Often needed for enablement decisions for move down actions. * Often needed for enablement decisions for move down actions.
* @return the object after the selection, null if there is none
*/ */
public Object getNextElement(); public Object getNextElement();
/** /**
* This is called to walk the tree back up to the roots and return the visible root * 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(); public Object getRootParent();
/** /**
* This returns an array containing each element in the tree, up to but not including the root. * 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. * 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); public Object[] getElementNodes(Object element);
/** /**
* Helper method to determine if a given object is currently selected. * 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); public boolean isSelectedOrChildSelected(Object parentElement);
/** /**
* Called when a property is updated and we need to inform the Property Sheet viewer. * 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 * 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. * this is the only event the property sheet listens for.
*/ */
public void updatePropertySheet(); public void updatePropertySheet();
/** /**
* Returns the tree item of the first selected object. Used for setViewerItem in a resource * Returns the tree item of the first selected object. Used for setViewerItem in a resource
* change event. * change event.
* @return the item
*/ */
public Item getViewerItem(); public Item getViewerItem();
/** /**
* Returns true if any of the selected items are currently expanded * @return true if any of the selected items are currently expanded
*/ */
public boolean areAnySelectedItemsExpanded(); public boolean areAnySelectedItemsExpanded();
/** /**
* Returns true if any of the selected items are expandable but not yet expanded * @return true if any of the selected items are expandable but not yet expanded
*/ */
public boolean areAnySelectedItemsExpandable(); public boolean areAnySelectedItemsExpandable();
} }