blob: f7d535b8683c886ec257960357749fb5ae0345b3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Matt Chapman - initial version
*******************************************************************************/
package org.eclipse.ajdt.ui.buildconfig;
import org.eclipse.core.resources.IProject;
import org.eclipse.jdt.core.IJavaProject;
public interface IBuildConfigurator {
public IProjectBuildConfigurator getProjectBuildConfigurator(IProject project);
public IProjectBuildConfigurator getActiveProjectBuildConfigurator() ;
public IProjectBuildConfigurator getProjectBuildConfigurator(IJavaProject jp);
public void setup(IProject project);
public void restoreJDTState(IProject project);
}