ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / provider / ISDCollapseProvider.java
index 55ff866290ed57c78fa4eaccd4cd62972b8a7c3e..b0e9f56a90678e76e79d03d62c13173c5c28ba15 100755 (executable)
@@ -1,33 +1,36 @@
 /**********************************************************************
- * Copyright (c) 2005, 2006, 2011 IBM Corporation and others.
+ * Copyright (c) 2005, 2013 IBM Corporation, 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
- * $Id: ISDCollapseProvider.java,v 1.2 2006/09/20 20:56:26 ewchan Exp $
- * 
- * Contributors: 
- * IBM - Initial API and implementation
- * Bernd Hufmann - Updated for TMF
+ *
+ * Contributors:
+ *     IBM - Initial API and implementation
+ *     Bernd Hufmann - Updated for TMF
  **********************************************************************/
+
 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider;
 
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.Lifeline;
 
 /**
+ * Interface for providing a collapse provider.
+ *
  * Sequence diagram loaders which want to support Drag and Drop collapsing in the sequence diagram must implement this
- * interface and register this implementation using SDViewer.setCollapsingProvider();
- * 
+ * interface and register this implementation using <code>SDView.setCollapsingProvider();</code>
+ *
+ * @version 1.0
  * @author sveyrier
  */
 public interface ISDCollapseProvider {
 
     /**
      * Called back when the sequence diagram is requesting 2 lifelines collapsing
-     * 
+     *
      * @param lifeline1 - One of the lifeline to collapse
-     * @param Lifeline2 - The other lifeline to collapse with
+     * @param lifeline2 - The other lifeline to collapse with
      */
-    public void collapseTwoLifelines(Lifeline lifeline1, Lifeline lifeline2);
+    void collapseTwoLifelines(Lifeline lifeline1, Lifeline lifeline2);
 
 }
This page took 0.035664 seconds and 5 git commands to generate.