org.eclipse.ui.IContainmentAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of workbench Show documentation
Show all versions of workbench Show documentation
This plug-in contains the bulk of the Workbench implementation, and depends on JFace, SWT, and Core Runtime. It cannot be used independently from org.eclipse.ui. Workbench client plug-ins should not depend directly on this plug-in.
The newest version!
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui;
/**
* This adapter interface provides a way to test element containment
* in a model-independent way.
* The workbench uses this interface in certain views
* to test if a given resource is part of a working set.
*
* @since 2.1
*/
public interface IContainmentAdapter {
/**
* Checks whether the given element corresponds to the containment context.
*/
public static final int CHECK_CONTEXT = 1;
/**
* Checks whether the given element corresponds to a direct child of the
* containment context. Does not include the containment context itself.
*/
public static final int CHECK_IF_CHILD = 2;
/**
* Checks whether the given element corresponds to an ancestor of the
* containment context. Does not include the containment context itself.
*/
public static final int CHECK_IF_ANCESTOR = 4;
/**
* Checks whether the given element corresponds to a descendant of the
* containment context. Does not include the containment context itself.
*/
public static final int CHECK_IF_DESCENDANT = 8;
/**
* Returns whether the given element is considered contained
* in the specified containment context or if it is the context
* itself.
*
* @param containmentContext object that provides containment
* context for the element. This is typically a container object
* (e.g., IFolder) and may be the element object itself.
* @param element object that should be tested for containment
* @param flags one or more of CHECK_CONTEXT
,
* CHECK_IF_CHILD
, CHECK_IF_ANCESTOR
,
* CHECK_IF_DESCENDENT
logically ORed together.
*/
public boolean contains(Object containmentContext, Object element, int flags);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy