blob: 83d7fdbb195ad48bec8711f2678767d1654388c8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* IBM - Initial API and implementation
******************************************************************************/
package org.eclipse.core.tests.internal.resources;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectNature;
import org.eclipse.core.runtime.CoreException;
/**
*/
public class TestNature implements IProjectNature {
private IProject project;
/**
* Constructor for TestNature.
*/
public TestNature() {
super();
}
/**
* @see IProjectNature#configure()
*/
public void configure() throws CoreException {
}
/**
* @see IProjectNature#deconfigure()
*/
public void deconfigure() throws CoreException {
}
/**
* @see IProjectNature#getProject()
*/
public IProject getProject() {
return project;
}
/**
* @see IProjectNature#setProject(IProject)
*/
public void setProject(IProject project) {
this.project = project;
}
}