tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / wizards / SelectTracesWizard.java
index 2fbf3a8c957edcb4d880add447ea99bf8e9990d9..2ab656bf7a2a689feaeadb12488a9dc8f0aa2956 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2010, 2011 Ericsson
- * 
+ * Copyright (c) 2009, 2012 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
  *******************************************************************************/
@@ -20,8 +20,10 @@ import org.eclipse.ui.IImportWizard;
 import org.eclipse.ui.IWorkbench;
 
 /**
- * <b><u>SelectTracesWizard</u></b>
+ * Wizard implementation to select traces for an experiment.
  * <p>
+ * @version 1.0
+ * @author Francois Chouinard
  */
 public class SelectTracesWizard extends Wizard implements IImportWizard {
 
@@ -36,7 +38,11 @@ public class SelectTracesWizard extends Wizard implements IImportWizard {
     // ------------------------------------------------------------------------
     // Constructor
     // ------------------------------------------------------------------------
-
+    /**
+     * Constructor
+     * @param project The project model element
+     * @param experiment The experiemnt model element
+     */
     public SelectTracesWizard(TmfProjectElement project, TmfExperimentElement experiment) {
         fProject = project;
         fExperiment = experiment;
@@ -46,11 +52,19 @@ public class SelectTracesWizard extends Wizard implements IImportWizard {
     // Wizard
     // ------------------------------------------------------------------------
 
+    /*
+     * (non-Javadoc)
+     * @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)
+     */
     @Override
     public void init(IWorkbench workbench, IStructuredSelection selection) {
         setWindowTitle(Messages.SelectTracesWizard_WindowTitle);
     }
 
+    /*
+     * (non-Javadoc)
+     * @see org.eclipse.jface.wizard.Wizard#addPages()
+     */
     @Override
     public void addPages() {
         super.addPages();
@@ -58,6 +72,10 @@ public class SelectTracesWizard extends Wizard implements IImportWizard {
         addPage(fSelectTraceWizardPage);
     }
 
+    /*
+     * (non-Javadoc)
+     * @see org.eclipse.jface.wizard.Wizard#performFinish()
+     */
     @Override
     public boolean performFinish() {
         return fSelectTraceWizardPage.performFinish();
This page took 0.024479 seconds and 5 git commands to generate.