/******************************************************************************* * Copyright (c) 2000, 2008 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.wst.jsdt.internal.corext.refactoring.reorg; import org.eclipse.wst.jsdt.core.IJavaScriptProject; import org.eclipse.wst.jsdt.core.IPackageFragmentRoot; /** * Query that can be used when manipulating package fragment roots. * Depending on the context, <code>confirmManipulation</code> can be used to * determine whether, for example, the package fragment root is to be deleted or * not or if the classpath of the referencing projects is to be updated. */ public interface IPackageFragmentRootManipulationQuery { public boolean confirmManipulation(IPackageFragmentRoot root, IJavaScriptProject[] referencingProjects); }