blob: 23fd60eb4c158f6c3933dfb199820818d9dc8eb6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2016 xored software, Inc. 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:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.core.builder;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.dltk.core.IScriptProject;
public abstract class AbstractBuildParticipantType implements
IBuildParticipantFactory {
/**
* @deprecated
*/
@Deprecated
protected final void getID() {
}
/**
* @deprecated
*/
@Deprecated
protected final void getName() {
}
/**
* @deprecated
*/
@Deprecated
protected final void getNature() {
}
@Override
public abstract IBuildParticipant createBuildParticipant(
IScriptProject project) throws CoreException;
}