tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / core / SyncMessageReturn.java
index d9e43712cec340a62bad04f0e7a4341c82a836a8..30ee55a5a9e3e2b7410cc18215fbb090490c4cfa 100755 (executable)
@@ -1,19 +1,20 @@
 /**********************************************************************
- * Copyright (c) 2005, 2006, 2011 IBM Corporation and others.
+ * 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
- * $Id: SyncMessageReturn.java,v 1.2 2006/09/20 20:56:25 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.core;
 
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IGC;
-import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.ISDPreferences;
+import org.eclipse.linuxtools.tmf.ui.views.uml2sd.preferences.ISDPreferences;
+import org.eclipse.linuxtools.tmf.ui.views.uml2sd.preferences.SDViewPref;
 
 /**
  * The message return graph node implementation.<br>
@@ -23,63 +24,95 @@ import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.ISDPreferences;
  * <br>
  * WARNING: The association validity is not checked, it is not necessary to provide a valid association, not even needed
  * to set an association to drawn a message with a message return style.<br>
- * 
- * 
+ *
+ *
  * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.SyncMessage SyncMessage for usage example
+ * @version 1.0
  * @author sveyrier
- * 
+ *
  */
 public class SyncMessageReturn extends SyncMessage {
 
+    // ------------------------------------------------------------------------
+    // Constants
+    // ------------------------------------------------------------------------
+    /**
+     * The graphNode ID
+     */
+    public static final String SYNC_MESS_RET_TAG = "SyncMessageRet"; //$NON-NLS-1$
+
+    // ------------------------------------------------------------------------
+    // Attributes
+    // ------------------------------------------------------------------------
     /**
      * The associated message(the message it is the return).
      */
-    protected SyncMessage message = null;
+    protected SyncMessage fMessage = null;
 
-    public static final String SYNC_MESS_RET_TAG = "SyncMessageRet"; //$NON-NLS-1$
+    // ------------------------------------------------------------------------
+    // Constractors
+    // ------------------------------------------------------------------------
 
+    /**
+     * Default constructor
+     */
     public SyncMessageReturn() {
-        prefId = ISDPreferences.PREF_SYNC_MESS_RET;
+        fPrefId = ISDPreferences.PREF_SYNC_MESS_RET;
     }
 
+    // ------------------------------------------------------------------------
+    // Methods
+    // ------------------------------------------------------------------------
     /**
      * Set the associated message (the message it is the return).<br>
      * Setting the association will activate the navigation in the default sequence diagram implementation to the
      * message when the user right click on this message return.<br>
-     * 
+     *
      * @param parentMessage the message to associate
      */
     public void setMessage(SyncMessage parentMessage) {
-        message = parentMessage;
-        message.setMessageReturn(this);
+        fMessage = parentMessage;
+        fMessage.setMessageReturn(this);
     }
 
     /**
      * Returns the syncMessage associated to this SyncMessageReturn
-     * 
+     *
      * @return the associated message
      */
     public SyncMessage getMessage() {
-        return message;
+        return fMessage;
     }
 
+    /*
+     * (non-Javadoc)
+     * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.SyncMessage#draw(org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IGC)
+     */
     @Override
     public void draw(IGC context) {
-        if (!isVisible())
+        if (!isVisible()) {
             return;
+        }
+
+        ISDPreferences pref = SDViewPref.getInstance();
+
         int oldStyle = context.getLineStyle();
         // Message return are dashed
         context.setLineStyle(context.getLineDotStyle());
-        // Draw it selected?*/
+        // Draw it selected?
         if (!isSelected()) {
-            context.setBackground(Frame.getUserPref().getBackGroundColor(prefId));
-            context.setForeground(Frame.getUserPref().getForeGroundColor(prefId));
+            context.setBackground(pref.getBackGroundColor(fPrefId));
+            context.setForeground(pref.getForeGroundColor(fPrefId));
         }
         super.draw(context);
         // restore the context
         context.setLineStyle(oldStyle);
     }
 
+    /*
+     * (non-Javadoc)
+     * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.SyncMessage#getArrayId()
+     */
     @Override
     public String getArrayId() {
         return SYNC_MESS_RET_TAG;
This page took 0.024966 seconds and 5 git commands to generate.