Package org.eclipse.ui.views.navigator
Class ResourceSelectionUtil
- java.lang.Object
-
- org.eclipse.ui.views.navigator.ResourceSelectionUtil
-
@Deprecated public class ResourceSelectionUtil extends Object
Deprecated.as of 3.5, useResourceSelectionUtilinstead.Provides utilities for checking the validity of selections.This class provides static methods only; it is not intended to be instantiated or subclassed.
- Since:
- 2.0
- Restriction:
- This class is not intended to be subclassed by clients.
- Restriction:
- This class is not intended to be referenced by clients. Planned to be deleted, please see Bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=549953
- Restriction:
- This class is not intended to be instantiated by clients.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static IStructuredSelectionallResources(IStructuredSelection selection, int resourceMask)Deprecated.Returns the selection adapted to IResource.static booleanallResourcesAreOfType(IStructuredSelection selection, int resourceMask)Deprecated.Returns whether the types of the resources in the given selection are among the specified resource types.static booleanresourceIsType(IResource resource, int resourceMask)Deprecated.Returns whether the type of the given resource is among the specified resource types.
-
-
-
Method Detail
-
allResourcesAreOfType
public static boolean allResourcesAreOfType(IStructuredSelection selection, int resourceMask)
Deprecated.Returns whether the types of the resources in the given selection are among the specified resource types.- Parameters:
selection- the selectionresourceMask- resource mask formed by bitwise OR of resource type constants (defined onIResource)- Returns:
trueif all selected elements are resources of the right type, andfalseif at least one element is either a resource of some other type or a non-resource- See Also:
IResource.getType()
-
allResources
public static IStructuredSelection allResources(IStructuredSelection selection, int resourceMask)
Deprecated.Returns the selection adapted to IResource. Returns null if any of the entries are not adaptable.- Parameters:
selection- the selectionresourceMask- resource mask formed by bitwise OR of resource type constants (defined onIResource)- Returns:
- IStructuredSelection or null if any of the entries are not adaptable.
- See Also:
IResource.getType()
-
resourceIsType
public static boolean resourceIsType(IResource resource, int resourceMask)
Deprecated.Returns whether the type of the given resource is among the specified resource types.- Parameters:
resource- the resourceresourceMask- resource mask formed by bitwise OR of resource type constants (defined onIResource)- Returns:
trueif the resources has a matching type, andfalseotherwise- See Also:
IResource.getType()
-
-