tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / core / HotSpot.java
index db099e50d3024cf5c99d180a4b77323b2fb39558..e058affdf50ad3449251296429e033ee142345b8 100755 (executable)
@@ -1,16 +1,15 @@
 /**********************************************************************
- * Copyright (c) 2005, 2006 IBM Corporation and others.
- * Copyright (c) 2011, 2012 Ericsson.
- * 
+ * Copyright (c) 2005, 2012 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
- * 
- * 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.core;
 
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IGC;
@@ -20,7 +19,7 @@ import org.eclipse.linuxtools.tmf.ui.views.uml2sd.preferences.SDViewPref;
 
 /**
  * Class to add a hot spot marker.
- * 
+ *
  * @version 1.0
  * @author sveyrier
  */
@@ -52,7 +51,7 @@ public class HotSpot extends GraphNode {
     // ------------------------------------------------------------------------
     // Constructors
     // ------------------------------------------------------------------------
-    
+
     /**
      * Default constructor
      */
@@ -66,7 +65,7 @@ public class HotSpot extends GraphNode {
 
     /**
      * Set the marker image.
-     * 
+     *
      * @param img A image to set
      */
     public void setImage(IImage img) {
@@ -123,7 +122,7 @@ public class HotSpot extends GraphNode {
 
     /**
      * Set the lifeline on which the execution occurrence appears.
-     * 
+     *
      * @param occ the parent lifeline
      */
     public void setExecution(BasicExecutionOccurrence occ) {
@@ -133,7 +132,7 @@ public class HotSpot extends GraphNode {
 
     /**
      * Get the lifeline on which the execution occurrence appears.
-     * 
+     *
      * @return - the parent lifeline
      */
     public BasicExecutionOccurrence getExecOcc() {
@@ -141,8 +140,8 @@ public class HotSpot extends GraphNode {
     }
 
     /**
-     * Returns the occurrence number. 
-     * 
+     * Returns the occurrence number.
+     *
      * @return the occurrence number.
      */
     public int getOccurrence() {
@@ -151,7 +150,7 @@ public class HotSpot extends GraphNode {
 
     /**
      * Set the occurrence number.
-     * 
+     *
      * @param occ A number to set.
      */
     public void setOccurrence(int occ) {
@@ -208,7 +207,7 @@ public class HotSpot extends GraphNode {
         int width = getWidth();
         int height = getHeight();
 
-        if (Frame.contains(x, y, width, height, xValue, yValue)) {
+        if (GraphNode.contains(x, y, width, height, xValue, yValue)) {
             return true;
         }
         return false;
This page took 0.024806 seconds and 5 git commands to generate.