blob: 092278a59bc981d9768e3dc27ab0fe24f9bd4a20 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.examples.model;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectNature;
/**
* Nature used to identify a model project
*/
public class ModelNature implements IProjectNature {
public static final String NATURE_ID = "org.eclipse.team.examples.filesystem.modelNature";
private IProject project;
@Override
public void configure() {
// Nothing to do
}
@Override
public void deconfigure() {
// Nothing to do
}
@Override
public IProject getProject() {
return project;
}
@Override
public void setProject(IProject project) {
this.project = project;
}
}