tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / model / TraceFolderContentProvider.java
index 4dfe63b2c16417f8a8fd9c081033a96b56d05eb8..87115b59dca6ede7fbf318d7be74273f7f13d6fb 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
- * Copyright (c) 2010, 2011, 2012 Ericsson
- * 
+ * Copyright (c) 2010, 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
  *******************************************************************************/
@@ -22,16 +22,12 @@ import org.eclipse.jface.viewers.Viewer;
  * Content provider implementation for trace folders for tree viewers that display
  * the content of a trace folder.
  * <p>
- * 
+ *
  * @version 1.0
- * @author Francois Chouinard 
+ * @author Francois Chouinard
  */
 public class TraceFolderContentProvider implements IStructuredContentProvider {
 
-    /*
-     * (non-Javadoc)
-     * @see org.eclipse.jface.viewers.IStructuredContentProvider#getElements(java.lang.Object)
-     */
     @Override
     public Object[] getElements(Object inputElement) {
         if (inputElement instanceof TmfTraceFolder) {
@@ -50,18 +46,10 @@ public class TraceFolderContentProvider implements IStructuredContentProvider {
         return null;
     }
 
-    /*
-     * (non-Javadoc)
-     * @see org.eclipse.jface.viewers.IContentProvider#dispose()
-     */
     @Override
     public void dispose() {
     }
 
-    /*
-     * (non-Javadoc)
-     * @see org.eclipse.jface.viewers.IContentProvider#inputChanged(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
-     */
     @Override
     public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
     }
This page took 0.024713 seconds and 5 git commands to generate.