blob: c629ffd38b30c66e672899c6c411c1366e4e14b2 [file] [log] [blame]
/**
* Copyright (c) 2000, 2008 IBM Corporation and others.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*/
package org.eclipse.egf.core.internal.natures;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectNature;
import org.eclipse.core.runtime.PlatformObject;
/**
*/
public abstract class BaseProject extends PlatformObject implements IProjectNature {
private IProject _project;
public BaseProject() {
super();
}
public IProject getProject() {
return _project;
}
public void setProject(IProject project_p) {
_project = project_p;
}
}