Contribute CNF based TMF project handling
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / TmfProjectNature.java
1 /*******************************************************************************
2 * Copyright (c) 2009 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf;
14
15 import org.eclipse.core.resources.IProject;
16 import org.eclipse.core.resources.IProjectNature;
17 import org.eclipse.core.runtime.CoreException;
18
19 /**
20 * <b><u>TmfProjectNature</u></b>
21 * <p>
22 * This is really a marker for the tracing projects.
23 */
24 public class TmfProjectNature implements IProjectNature {
25
26 public static final String ID = "org.eclipse.linuxtools.tmf.project.nature"; //$NON-NLS-1$
27
28 private IProject fProject;
29
30 @Override
31 public void configure() throws CoreException {
32 }
33
34 @Override
35 public void deconfigure() throws CoreException {
36 }
37
38 @Override
39 public IProject getProject() {
40 return fProject;
41 }
42
43 @Override
44 public void setProject(IProject project) {
45 fProject = project;
46 }
47
48 }
This page took 0.033895 seconds and 5 git commands to generate.