2010-11-09 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug315307
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / project / LTTngProjectNature.java
CommitLineData
6e512b93
ASL
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
13package org.eclipse.linuxtools.lttng.ui.views.project;
14
15import org.eclipse.core.resources.IProject;
16import org.eclipse.core.resources.IProjectNature;
17import org.eclipse.core.runtime.CoreException;
18
19/**
20 * <b><u>LTTngProjectNature</u></b>
21 * <p>
22 * This is really a marker for the LTTng projects.
23 */
24public class LTTngProjectNature implements IProjectNature {
25
3b38ea61 26 public static final String ID = "org.eclipse.linuxtools.lttng.ui.views.project.LTTngProjectNature"; //$NON-NLS-1$
6e512b93
ASL
27
28 private IProject fProject;
29
30 /* (non-Javadoc)
31 * @see org.eclipse.core.resources.IProjectNature#configure()
32 */
d4011df2 33 @Override
6e512b93
ASL
34 public void configure() throws CoreException {
35 // TODO Auto-generated method stub
36
37 }
38
39 /* (non-Javadoc)
40 * @see org.eclipse.core.resources.IProjectNature#deconfigure()
41 */
d4011df2 42 @Override
6e512b93
ASL
43 public void deconfigure() throws CoreException {
44 // TODO Auto-generated method stub
45
46 }
47
48 /* (non-Javadoc)
49 * @see org.eclipse.core.resources.IProjectNature#getProject()
50 */
d4011df2 51 @Override
6e512b93
ASL
52 public IProject getProject() {
53 return fProject;
54 }
55
56 /* (non-Javadoc)
57 * @see org.eclipse.core.resources.IProjectNature#setProject(org.eclipse.core.resources.IProject)
58 */
d4011df2 59 @Override
6e512b93
ASL
60 public void setProject(IProject project) {
61 fProject = project;
62 }
63
64}
This page took 0.028086 seconds and 5 git commands to generate.