tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / TmfProjectNature.java
index 6d7c6e9ca95ada584b5ec864b3e9d826a06f8997..c100335eb04b4e650745c7cdd27fb127a7acbd7a 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
- * Copyright (c) 2009 Ericsson
- * 
+ * Copyright (c) 2009, 2013 Ericsson
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  * Contributors:
  *   Francois Chouinard - Initial API and implementation
  *******************************************************************************/
@@ -17,32 +17,48 @@ import org.eclipse.core.resources.IProjectNature;
 import org.eclipse.core.runtime.CoreException;
 
 /**
- * <b><u>TmfProjectNature</u></b>
- * <p>
- * This is really a marker for the tracing projects.
+ * The TMF basic tracing project nature.
+ *
+ * @version 1.0
+ * @author Francois Chouinard
  */
 public class TmfProjectNature implements IProjectNature {
 
-       public static final String ID = "org.eclipse.linuxtools.tmf.project.nature"; //$NON-NLS-1$
+    // ------------------------------------------------------------------------
+    // Constants
+    // ------------------------------------------------------------------------
 
-       private IProject fProject;
-       
-       @Override
-       public void configure() throws CoreException {
-       }
+    /**
+     * The nature ID
+     */
+    public static final String ID = "org.eclipse.linuxtools.tmf.project.nature"; //$NON-NLS-1$
 
-       @Override
-       public void deconfigure() throws CoreException {
-       }
+    // ------------------------------------------------------------------------
+    // Attributes
+    // ------------------------------------------------------------------------
 
-       @Override
-       public IProject getProject() {
-               return fProject;
-       }
+    private IProject fProject;
 
-       @Override
-       public void setProject(IProject project) {
-               fProject = project;
-       }
+    // ------------------------------------------------------------------------
+    // Operations
+    // ------------------------------------------------------------------------
+
+    @Override
+    public void configure() throws CoreException {
+    }
+
+    @Override
+    public void deconfigure() throws CoreException {
+    }
+
+    @Override
+    public IProject getProject() {
+        return fProject;
+    }
+
+    @Override
+    public void setProject(IProject project) {
+        fProject = project;
+    }
 
 }
This page took 0.026136 seconds and 5 git commands to generate.