All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.ui.IContainmentAdapter Maven / Gradle / Ivy

There is a newer version: 3.133.0
Show newest version
/*******************************************************************************
 * Copyright (c) 2000, 2015 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 - 2024 Weber Informatics LLC | Privacy Policy