tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / virtualtable / IDoubleClickListener.java
index 7ed4717963b7cba60a2208d8d3daa7c5b17c137c..f00cb617bfbd6a9847b7971532f20ac492ad753e 100644 (file)
@@ -1,21 +1,30 @@
 /*******************************************************************************
- * Copyright (c) 2011 Kalray.
- * 
+ * Copyright (c) 2011, 2012 Kalray.
+ *
  * 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:
  *   Xavier Raynaud - Initial API and implementation
  ******************************************************************************/
 package org.eclipse.linuxtools.tmf.ui.widgets.virtualtable;
 
 import org.eclipse.swt.widgets.TableItem;
-
+/**
+ * Double click listener interface
+ * @author Xavier Raynaud
+ * @version 1.0
+ */
 public interface IDoubleClickListener {
 
-       
+       /**
+        * Handle a double click event
+        * @param table the table that was double clicked
+        * @param item the item that was double clicked in the table
+        * @param column the column that was double clicked in the item in the table.
+        */
        public void handleDoubleClick(TmfVirtualTable table, TableItem item, int column);
-       
+
 }
This page took 0.023748 seconds and 5 git commands to generate.