org.eclipse.team.core/src/org/eclipse/team/core/mapping/IResourceMappingScope.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.8 - (download) (annotate)
Fri Feb 10 13:48:34 2006 UTC (3 years, 9 months ago) by mvalenta
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +0 -0 lines
FILE REMOVED
Removing deprecated API that was introduced in 3.2
/*******************************************************************************
 * Copyright (c) 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.team.core.mapping;

import org.eclipse.core.resources.IResource;

/**
 * @deprecated use {@link ISynchronizationScope} instead
 * @since 3.2
 */
public interface IResourceMappingScope {

	IResource[] getRoots();

	boolean contains(IResource resource);

}