tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / core / Frame.java
index 950634036b330aa94bbe7c33f35f9749e8643c07..2a98d2302adbf3f018f95ab5d3354df2b1a624a4 100755 (executable)
@@ -1,16 +1,15 @@
 /**********************************************************************
- * Copyright (c) 2005, 2008 IBM Corporation and others.
- * Copyright (c) 2011, 2012 Ericsson.
- * 
+ * 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
- * 
- * 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 java.util.ArrayList;
@@ -18,7 +17,7 @@ import java.util.Arrays;
 import java.util.Iterator;
 import java.util.List;
 
-import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
+import org.eclipse.linuxtools.tmf.core.timestamp.ITmfTimestamp;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IColor;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IGC;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.preferences.SDViewPref;
@@ -29,10 +28,10 @@ import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.TimeEventComparator;
  * For instance, only one frame can be drawn in the View.<br>
  * Lifelines, Messages and Stop which are supposed to represent a Sequence diagram are drawn in a Frame.<br>
  * Only the graph node added to their representing list will be drawn.
- * 
+ *
  * The lifelines are appended along the X axsis when added in a frame.<br>
  * The syncMessages are ordered along the Y axsis depending on the event occurrence they are attached to.<br>
- * 
+ *
  * @see org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.Lifeline Lifeline for more event occurence details
  * @author sveyrier
  * @version 1.0
@@ -45,27 +44,27 @@ public class Frame extends BasicFrame {
     /**
      * The lifeline that is current highlighted.
      */
-    protected Lifeline highlightLifeline = null;
+    protected Lifeline fHighlightLifeline = null;
     /**
      * The value of the start event.
      */
-    protected int startEvent = 0;
+    protected int fStartEvent = 0;
     /**
      * The nubmer of events in the frame.
      */
-    protected int nbEvent = 0;
+    protected int fNbEvent = 0;
     /**
      * The color for highlighting.
      */
-    protected IColor highlightColor = null;
+    protected IColor fHighlightColor = null;
     /**
      * The list of time events of the corresponding execution occurrences.
      */
-    protected List<SDTimeEvent> executionOccurrencesWithTime;
+    protected List<SDTimeEvent> fExecutionOccurrencesWithTime;
     /**
      * The Array of lifeline categories.
      */
-    protected LifelineCategories[] lifelineCategories = null;
+    protected LifelineCategories[] fLifelineCategories = null;
 
     // ------------------------------------------------------------------------
     // Methods
@@ -74,19 +73,19 @@ public class Frame extends BasicFrame {
     /**
      * Returns a list of all lifelines known by this frame. Known lifelines are the only one which can be displayed on
      * screen.
-     * 
+     *
      * @return the lifelines list
      */
     protected List<GraphNode> getLifelines() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return null;
-        } 
-        return (List<GraphNode>) nodes.get(Lifeline.LIFELINE_TAG);
+        }
+        return fNodes.get(Lifeline.LIFELINE_TAG);
     }
 
     /**
      * Returns the number of lifelines stored in the frame
-     * 
+     *
      * @return the number of lifelines
      */
     public int lifeLinesCount() {
@@ -99,7 +98,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Returns the lifeline at the given index in the lifelines array
-     * 
+     *
      * @param index the position in the lifeline array
      * @return the lifeline or <code>null</code>
      */
@@ -113,31 +112,31 @@ public class Frame extends BasicFrame {
     /**
      * Returns a list of syncMessages known by this frame. Known syncMessages are the only on which can be displayed on
      * screen
-     * 
+     *
      * @return the syncMessages list
      */
     protected List<GraphNode> getSyncMessages() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return null;
-        } 
-        return (List<GraphNode>) nodes.get(SyncMessage.SYNC_MESS_TAG);
+        }
+        return fNodes.get(SyncMessage.SYNC_MESS_TAG);
     }
 
     /**
      * Returns the number of syncMessages stored in the frame
-     * 
+     *
      * @return the number of syncMessage
      */
     public int syncMessageCount() {
         if (getSyncMessages() != null) {
             return getSyncMessages().size();
-        } 
+        }
         return 0;
     }
 
     /**
      * Returns the syncMessage at the given index in the syncMessages array
-     * 
+     *
      * @param index the position in the syncMessages array
      * @return the syncMessage or <code>null</code>
      */
@@ -151,19 +150,19 @@ public class Frame extends BasicFrame {
     /**
      * Returns a list of asyncMessages known by this frame. Known asyncMessages are the only on which can be displayed
      * on screen
-     * 
+     *
      * @return the asyncMessages list or <code>null</code>
      */
     protected List<GraphNode> getAsyncMessages() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return null;
         }
-        return (List<GraphNode>) nodes.get(AsyncMessage.ASYNC_MESS_TAG);
+        return fNodes.get(AsyncMessage.ASYNC_MESS_TAG);
     }
 
     /**
      * Returns the number of asyncMessage stored in the frame
-     * 
+     *
      * @return the number of asyncMessage
      */
     public int asyncMessageCount() {
@@ -175,7 +174,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Returns the asyncMessage at the given index in the asyncMessage array
-     * 
+     *
      * @param index the position in the asyncMessage array
      * @return the asyncMessage or <code>null</code>
      */
@@ -189,19 +188,19 @@ public class Frame extends BasicFrame {
     /**
      * Returns a list of syncMessages return known by this frame. Known syncMessages return are the only on which can be
      * displayed on screen
-     * 
+     *
      * @return the syncMessages return list or <code>null</code>
      */
     protected List<GraphNode> getSyncMessagesReturn() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return null;
         }
-        return (List<GraphNode>) nodes.get(SyncMessageReturn.SYNC_MESS_RET_TAG);
+        return fNodes.get(SyncMessageReturn.SYNC_MESS_RET_TAG);
     }
 
     /**
      * Returns the number of syncMessageReturn stored in the frame
-     * 
+     *
      * @return the number of syncMessageReturn
      */
     public int syncMessageReturnCount() {
@@ -213,7 +212,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Returns the syncMessageReturn at the given index in the syncMessageReturn array
-     * 
+     *
      * @param index the position in the syncMessageReturn array
      * @return the syncMessageReturn or <code>null</code>
      */
@@ -227,19 +226,19 @@ public class Frame extends BasicFrame {
     /**
      * Returns a list of asyncMessageRetun known by this frame. Known asyncMessageRetun are the only on which can be
      * displayed on screen
-     * 
+     *
      * @return the asyncMessageRetun list or <code>null</code>
      */
     protected List<GraphNode> getAsyncMessagesReturn() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return null;
         }
-        return (List<GraphNode>) nodes.get(AsyncMessageReturn.ASYNC_MESS_RET_TAG);
+        return fNodes.get(AsyncMessageReturn.ASYNC_MESS_RET_TAG);
     }
 
     /**
      * Returns the number of asyncMessageReturn stored in the frame
-     * 
+     *
      * @return the number of asyncMessageReturn
      */
     public int asyncMessageReturnCount() {
@@ -251,7 +250,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Returns the asyncMessageReturn at the given index in the asyncMessageReturn array
-     * 
+     *
      * @param index the position in the asyncMessageReturn array
      * @return the asyncMessageReturn or <code>null</code>
      */
@@ -265,11 +264,11 @@ public class Frame extends BasicFrame {
     /**
      * Adds a lifeline to the frame lifelines list. The lifeline X drawing order depends on the lifeline addition order
      * into the frame lifelines list.
-     * 
+     *
      * @param lifeline the lifeline to add
      */
     public void addLifeLine(Lifeline lifeline) {
-        computeMinMax = true;
+        fComputeMinMax = true;
         if (lifeline == null) {
             return;
         }
@@ -279,7 +278,7 @@ public class Frame extends BasicFrame {
         // and set the lifeline drawing order
         lifeline.setIndex(getNewHorizontalIndex());
         if (lifeline.hasTimeInfo()) {
-            timeInfo = true;
+            fHasTimeInfo = true;
         }
         // add the lifeline to the lifelines list
         addNode(lifeline);
@@ -287,88 +286,88 @@ public class Frame extends BasicFrame {
 
     /**
      * Returns the first visible lifeline drawn in the view
-     * 
+     *
      * @return the first visible lifeline index
      */
     public int getFirstVisibleLifeline() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return 0;
-        } else if (indexes.get(Lifeline.LIFELINE_TAG) != null) {
-            return ((Integer) indexes.get(Lifeline.LIFELINE_TAG)).intValue();
+        } else if (fIndexes.get(Lifeline.LIFELINE_TAG) != null) {
+            return fIndexes.get(Lifeline.LIFELINE_TAG).intValue();
         }
         return 0;
     }
 
     /**
      * Returns the first visible synchronous message drawn in the view
-     * 
+     *
      * @return the first visible synchronous message index
      */
     public int getFirstVisibleSyncMessage() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return 0;
-        } else if (indexes.get(SyncMessage.SYNC_MESS_TAG) != null) {
-            return ((Integer) indexes.get(SyncMessage.SYNC_MESS_TAG)).intValue();
+        } else if (fIndexes.get(SyncMessage.SYNC_MESS_TAG) != null) {
+            return fIndexes.get(SyncMessage.SYNC_MESS_TAG).intValue();
         }
         return 0;
     }
 
     /**
      * Returns the first visible synchronous message return drawn in the view
-     * 
+     *
      * @return the first visible synchronous message return index
      */
     public int getFirstVisibleSyncMessageReturn() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return 0;
-        } else if (indexes.get(SyncMessageReturn.SYNC_MESS_RET_TAG) != null) {
-            return ((Integer) indexes.get(SyncMessageReturn.SYNC_MESS_RET_TAG)).intValue();
+        } else if (fIndexes.get(SyncMessageReturn.SYNC_MESS_RET_TAG) != null) {
+            return fIndexes.get(SyncMessageReturn.SYNC_MESS_RET_TAG).intValue();
         }
         return 0;
     }
 
     /**
      * Returns the first visible synchronous message drawn in the view
-     * 
+     *
      * @return the first visible synchronous message index
      */
     public int getFirstVisibleAsyncMessage() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return 0;
-        } else if (indexes.get(AsyncMessage.ASYNC_MESS_TAG) != null) {
-            return ((Integer) indexes.get(AsyncMessage.ASYNC_MESS_TAG)).intValue();
+        } else if (fIndexes.get(AsyncMessage.ASYNC_MESS_TAG) != null) {
+            return fIndexes.get(AsyncMessage.ASYNC_MESS_TAG).intValue();
         }
         return 0;
     }
 
     /**
      * Returns the first visible synchronous message return drawn in the view
-     * 
+     *
      * @return the first visible synchronous message return index
      */
     public int getFirstVisibleAsyncMessageReturn() {
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return 0;
-        } else if (indexes.get(AsyncMessageReturn.ASYNC_MESS_RET_TAG) != null) {
-            return ((Integer) indexes.get(AsyncMessageReturn.ASYNC_MESS_RET_TAG)).intValue();
+        } else if (fIndexes.get(AsyncMessageReturn.ASYNC_MESS_RET_TAG) != null) {
+            return fIndexes.get(AsyncMessageReturn.ASYNC_MESS_RET_TAG).intValue();
         }
         return 0;
     }
 
     /**
      * Returns the list of execution occurrences.
-     * 
+     *
      * @return the list of execution occurrences
      */
     public List<SDTimeEvent> getExecutionOccurrencesWithTime() {
-        return executionOccurrencesWithTime;
+        return fExecutionOccurrencesWithTime;
     }
 
     /**
      * Inserts a lifeline after a given lifeline.
-     * 
+     *
      * @param toInsert A lifeline to insert
-     * @param after A lifelife the toInsert-lifeline will be inserted after.  
+     * @param after A lifelife the toInsert-lifeline will be inserted after.
      */
     public void insertLifelineAfter(Lifeline toInsert, Lifeline after) {
         if ((toInsert == null)) {
@@ -410,9 +409,11 @@ public class Frame extends BasicFrame {
 
     /**
      * Inserts a lifeline before a given lifeline.
-     * 
-     * @param toInsert A lifeline to insert
-     * @param after A lifelife the toInsert-lifeline will be inserted before.  
+     *
+     * @param toInsert
+     *            A lifeline to insert
+     * @param before
+     *            A lifeline the toInsert-lifeline will be inserted before.
      */
     public void insertLifelineBefore(Lifeline toInsert, Lifeline before) {
         if ((toInsert == null)) {
@@ -454,9 +455,9 @@ public class Frame extends BasicFrame {
 
     /**
      * Gets the closer life line to the given x-coordinate.
-     * 
+     *
      * @param x A x coordinate
-     * @return the closer lifeline 
+     * @return the closer lifeline
      */
     public Lifeline getCloserLifeline(int x) {
         int index = (x - Metrics.FRAME_H_MARGIN + Metrics.LIFELINE_H_MAGIN) / Metrics.swimmingLaneWidth() - 1;
@@ -488,10 +489,10 @@ public class Frame extends BasicFrame {
 
     /**
      * Re-orders the given list of lifelines.
-     * 
+     *
      * @param list A list of lifelines to reorder.
      */
-    public void reorder(ArrayList<?> list) {
+    public void reorder(List<?> list) {
         for (int i = 0; i < list.size(); i++) {
             if (list.get(i) instanceof Lifeline[]) {
                 Lifeline temp[] = (Lifeline[]) list.get(i);
@@ -510,10 +511,10 @@ public class Frame extends BasicFrame {
      * Resets the time compression information.
      */
     public void resetTimeCompression() {
-        highlightLifeline = null;
-        this.startEvent = 0;
-        this.nbEvent = 0;
-        highlightColor = null;
+        fHighlightLifeline = null;
+        this.fStartEvent = 0;
+        this.fNbEvent = 0;
+        fHighlightColor = null;
     }
 
     /*
@@ -523,20 +524,19 @@ public class Frame extends BasicFrame {
     @Override
     protected void computeMinMax() {
         List<SDTimeEvent> timeArray = buildTimeArray();
-        if (timeArray == null) {
+        if ((timeArray == null) || timeArray.isEmpty()) {
             return;
         }
         for (int i = 0; i < timeArray.size() - 1; i++) {
-            SDTimeEvent m1 = (SDTimeEvent) timeArray.get(i);
-            SDTimeEvent m2 = (SDTimeEvent) timeArray.get(i + 1);
-            if (SDViewPref.getInstance().excludeExternalTime())
-                if ((m1.getGraphNode() instanceof BaseMessage) && (m2.getGraphNode() instanceof BaseMessage)) {
-                    BaseMessage mes1 = (BaseMessage) m1.getGraphNode();
-                    BaseMessage mes2 = (BaseMessage) m2.getGraphNode();
-                    if ((mes2.startLifeline == null) || (mes1.endLifeline == null)) {
-                        continue;
-                    }
+            SDTimeEvent m1 = timeArray.get(i);
+            SDTimeEvent m2 = timeArray.get(i + 1);
+            if (SDViewPref.getInstance().excludeExternalTime() && ((m1.getGraphNode() instanceof BaseMessage) && (m2.getGraphNode() instanceof BaseMessage))) {
+                BaseMessage mes1 = (BaseMessage) m1.getGraphNode();
+                BaseMessage mes2 = (BaseMessage) m2.getGraphNode();
+                if ((mes2.fStartLifeline == null) || (mes1.fEndLifeline == null)) {
+                    continue;
                 }
+            }
 
             updateMinMax(m1, m2);
         }
@@ -546,82 +546,88 @@ public class Frame extends BasicFrame {
      * Find the two graph nodes that are closest to this date, one just earlier, second just later. If date is before
      * any graph node, bounds[0] is null and bounds[1] is the earliest. If date is after any graph node, bounds[1] is
      * null and bounds[0] is the latest.
-     * 
+     *
      * @param dateToFind date to be found
      * @param bounds a two items array that will receive bounds if found
      * @return true if both bounds not null
+     * @since 2.0
      */
     public boolean findDateBounds(ITmfTimestamp dateToFind, ITimeRange bounds[]) {
         if (hasTimeInfo()) {
             List<SDTimeEvent> timeArray = buildTimeArray();
+
+            if ((timeArray == null) || timeArray.isEmpty()) {
+                return false;
+            }
+
             bounds[0] = null;
             bounds[1] = null;
             for (int i = 0; i < timeArray.size(); i++) {
-                SDTimeEvent m = (SDTimeEvent) timeArray.get(i);
+                SDTimeEvent m = timeArray.get(i);
                 if (m.getTime().compareTo(dateToFind, true) > 0) {
                     bounds[1] = m.getGraphNode();
                     if (i > 0) {
-                        bounds[0] = ((SDTimeEvent) timeArray.get(i - 1)).getGraphNode();
+                        bounds[0] = timeArray.get(i - 1).getGraphNode();
                         return true;
                     }
                     return false;
                 }
             }
-            bounds[0] = ((SDTimeEvent) timeArray.get(timeArray.size() - 1)).getGraphNode();
+            bounds[0] = timeArray.get(timeArray.size() - 1).getGraphNode();
         }
         return false;
     }
 
     /**
      * Set whether time information is available or not
-     * 
+     *
      * @param value <code>true</code> for has time information else <code>false</code>
      */
     protected void setHasTimeInfo(boolean value) {
-        timeInfo = value;
+        fHasTimeInfo = value;
     }
 
     /**
      * Returns whether frame has time info or not.
-     * 
+     *
      * @return <code>true</code> whether frame has time info else <code>false</code>
      */
     public boolean hasTimeInfo() {
-        return timeInfo;
+        return fHasTimeInfo;
     }
 
     /**
      * Highlights the time compression.
-     * 
+     *
      * @param lifeline A lifeline to highlight
      * @param startEvent A start event number
      * @param nbEvent A number of events
      * @param color A color for highlighting
      */
     public void highlightTimeCompression(Lifeline lifeline, int startEvent, int nbEvent, IColor color) {
-        highlightLifeline = lifeline;
-        this.startEvent = startEvent;
-        this.nbEvent = nbEvent;
-        highlightColor = color;
+        fHighlightLifeline = lifeline;
+        this.fStartEvent = startEvent;
+        this.fNbEvent = nbEvent;
+        fHighlightColor = color;
     }
 
     /**
      * Set the lifeline categories which will be use during the lifelines creation
-     * 
+     *
      * @see Lifeline#setCategory(int)
      * @param categories the lifeline categories array
      */
     public void setLifelineCategories(LifelineCategories[] categories) {
-        lifelineCategories = Arrays.copyOf(categories, categories.length);
+        fLifelineCategories = Arrays.copyOf(categories, categories.length);
     }
 
     /**
      * Returns the lifeline categories array set for the this frame
-     * 
+     *
      * @return the lifeline categories array or null if not set
      */
     public LifelineCategories[] getLifelineCategories() {
-        return  Arrays.copyOf(lifelineCategories, lifelineCategories.length); 
+        return  Arrays.copyOf(fLifelineCategories, fLifelineCategories.length);
     }
 
     /**
@@ -632,7 +638,7 @@ public class Frame extends BasicFrame {
      * - asynchronous syncMessages return<br>
      * For drawing performance reason, it is recommended to add synchronous syncMessages in the same order they should
      * appear along the Y axis in the Frame.
-     * 
+     *
      * @param message the message to add
      */
     public void addMessage(BaseMessage message) {
@@ -646,15 +652,15 @@ public class Frame extends BasicFrame {
     @Override
     public void draw(IGC context) {
         drawFrame(context);
-        if (!hasChilden) {
+        if (!fHasChilden) {
             return;
         }
-        
-        if (highlightLifeline != null) {
+
+        if (fHighlightLifeline != null) {
             IColor backupColor = context.getBackground();
-            context.setBackground(Frame.getUserPref().getTimeCompressionSelectionColor());
-            int gy = highlightLifeline.getY() + highlightLifeline.getHeight() + (Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing()) * startEvent;
-            context.fillRectangle(Metrics.FRAME_H_MARGIN + 1, gy, highlightLifeline.getX() + Metrics.getLifelineWidth() / 2 - Metrics.FRAME_H_MARGIN, (Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing()) * nbEvent);
+            context.setBackground(SDViewPref.getInstance().getTimeCompressionSelectionColor());
+            int gy = fHighlightLifeline.getY() + fHighlightLifeline.getHeight() + (Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing()) * fStartEvent;
+            context.fillRectangle(Metrics.FRAME_H_MARGIN + 1, gy, fHighlightLifeline.getX() + Metrics.getLifelineWidth() / 2 - Metrics.FRAME_H_MARGIN, (Metrics.getMessageFontHeigth() + Metrics.getMessagesSpacing()) * fNbEvent);
             context.setBackground(backupColor);
         }
         super.draw(context, false);
@@ -662,21 +668,21 @@ public class Frame extends BasicFrame {
         if (Metrics.swimmingLaneWidth() * context.getZoom() < Metrics.LIFELINE_SIGNIFICANT_HSPACING) {
             lifelineArryStep = Math.round(Metrics.LIFELINE_SIGNIFICANT_HSPACING / (Metrics.swimmingLaneWidth() * context.getZoom()));
         }
-        if (indexes.size() == 0) {
+        if (fIndexes.size() == 0) {
             return;
         }
-        int lifeLineDrawIndex = ((Integer) indexes.get(Lifeline.LIFELINE_TAG)).intValue();
-        for (int i = lifeLineDrawIndex; i < ((List<GraphNode>) nodes.get(Lifeline.LIFELINE_TAG)).size(); i = i + lifelineArryStep) {
-            Lifeline toDraw = (Lifeline) ((List<GraphNode>) nodes.get(Lifeline.LIFELINE_TAG)).get(i);
+        int lifeLineDrawIndex = fIndexes.get(Lifeline.LIFELINE_TAG).intValue();
+        for (int i = lifeLineDrawIndex; i < fNodes.get(Lifeline.LIFELINE_TAG).size(); i = i + lifelineArryStep) {
+            Lifeline toDraw = (Lifeline) fNodes.get(Lifeline.LIFELINE_TAG).get(i);
             if (toDraw.getX() - Metrics.LIFELINE_SPACING / 2 > context.getContentsX() + context.getVisibleWidth()) {
                 break;
             }
             toDraw.drawName(context);
 
-            if (highlightLifeline != null) {
-                if (toDraw == highlightLifeline) {
-                    toDraw.highlightExecOccurrenceRegion(context, startEvent, nbEvent, highlightColor);
-                } else if ((toDraw.getIndex() < highlightLifeline.getIndex()) || ((toDraw.getIndex() < highlightLifeline.getIndex()))) {
+            if (fHighlightLifeline != null) {
+                if (toDraw == fHighlightLifeline) {
+                    toDraw.highlightExecOccurrenceRegion(context, fStartEvent, fNbEvent, fHighlightColor);
+                } else if ((toDraw.getIndex() < fHighlightLifeline.getIndex()) || ((toDraw.getIndex() < fHighlightLifeline.getIndex()))) {
 
                     int acIndex = toDraw.getExecOccurrenceDrawIndex();
                     // acIndex = first visible execution occurrence
@@ -684,10 +690,10 @@ public class Frame extends BasicFrame {
                     if (toDraw.getExecutions() != null) {
                         for (int index = acIndex; index < toDraw.getExecutions().size(); index++) {
                             BasicExecutionOccurrence exec = (BasicExecutionOccurrence) toDraw.getExecutions().get(index);
-                            int tempEvent = startEvent;
-                            for (int j = 0; j < nbEvent; j++) {
-                                if (((tempEvent >= exec.startEventOccurrence) && (tempEvent <= exec.endEventOccurrence) && (tempEvent + 1 >= exec.startEventOccurrence) && (tempEvent + 1 <= exec.endEventOccurrence))) {
-                                    toDraw.highlightExecOccurrenceRegion(context, tempEvent, 1, Frame.getUserPref().getTimeCompressionSelectionColor());
+                            int tempEvent = fStartEvent;
+                            for (int j = 0; j < fNbEvent; j++) {
+                                if (((tempEvent >= exec.fStartEventOccurrence) && (tempEvent <= exec.fEndEventOccurrence) && (tempEvent + 1 >= exec.fStartEventOccurrence) && (tempEvent + 1 <= exec.fEndEventOccurrence))) {
+                                    toDraw.highlightExecOccurrenceRegion(context, tempEvent, 1, SDViewPref.getInstance().getTimeCompressionSelectionColor());
                                 }
                                 tempEvent = tempEvent + 1;
                             }
@@ -709,60 +715,56 @@ public class Frame extends BasicFrame {
      */
     @Override
     protected List<SDTimeEvent> buildTimeArray() {
-        if (!hasChilden) {
-            return null;
+
+        if (!fHasChilden) {
+            return new ArrayList<SDTimeEvent>();
         }
-        try {
-            List<SDTimeEvent> timeArray = super.buildTimeArray();
-            executionOccurrencesWithTime = null;
-            if (getLifelines() != null) {
-                for (int i = 0; i < ((List<GraphNode>) nodes.get(Lifeline.LIFELINE_TAG)).size(); i++) {
-                    Lifeline l = (Lifeline) ((List<GraphNode>) nodes.get(Lifeline.LIFELINE_TAG)).get(i);
-                    if (l.hasTimeInfo() && l.getExecutions() != null) {
-                        for (Iterator<GraphNode> j = l.getExecutions().iterator(); j.hasNext();) {
-                            GraphNode o = j.next();
-                            if (o instanceof ExecutionOccurrence) {
-                                ExecutionOccurrence eo = (ExecutionOccurrence) o;
-                                if (eo.hasTimeInfo()) {
-                                    int event = eo.getStartOccurrence();
-                                    ITmfTimestamp time = eo.getStartTime();
-                                    SDTimeEvent f = new SDTimeEvent(time, event, eo);
-                                    timeArray.add(f);
-                                    if (executionOccurrencesWithTime == null) {
-                                        executionOccurrencesWithTime = new ArrayList<SDTimeEvent>();
-                                    }
-                                    executionOccurrencesWithTime.add(f);
-                                    event = eo.getEndOccurrence();
-                                    time = eo.getEndTime();
-                                    f = new SDTimeEvent(time, event, eo);
-                                    timeArray.add(f);
-                                    executionOccurrencesWithTime.add(f);
+
+        List<SDTimeEvent> timeArray = super.buildTimeArray();
+        fExecutionOccurrencesWithTime = null;
+        if (getLifelines() != null) {
+            for (int i = 0; i < fNodes.get(Lifeline.LIFELINE_TAG).size(); i++) {
+                Lifeline lifeline = (Lifeline) fNodes.get(Lifeline.LIFELINE_TAG).get(i);
+                if (lifeline.hasTimeInfo() && lifeline.getExecutions() != null) {
+                    for (Iterator<GraphNode> j = lifeline.getExecutions().iterator(); j.hasNext();) {
+                        GraphNode o = j.next();
+                        if (o instanceof ExecutionOccurrence) {
+                            ExecutionOccurrence eo = (ExecutionOccurrence) o;
+                            if (eo.hasTimeInfo()) {
+                                int event = eo.getStartOccurrence();
+                                ITmfTimestamp time = eo.getStartTime();
+                                SDTimeEvent f = new SDTimeEvent(time, event, eo);
+                                timeArray.add(f);
+                                if (fExecutionOccurrencesWithTime == null) {
+                                    fExecutionOccurrencesWithTime = new ArrayList<SDTimeEvent>();
                                 }
+                                fExecutionOccurrencesWithTime.add(f);
+                                event = eo.getEndOccurrence();
+                                time = eo.getEndTime();
+                                f = new SDTimeEvent(time, event, eo);
+                                timeArray.add(f);
+                                fExecutionOccurrencesWithTime.add(f);
                             }
                         }
                     }
                 }
             }
+        }
 
-            if (executionOccurrencesWithTime != null) {
-                SDTimeEvent[] temp = executionOccurrencesWithTime.toArray(new SDTimeEvent[0]);
-                Arrays.sort(temp, new TimeEventComparator());
-                executionOccurrencesWithTime = Arrays.asList(temp);
-            }
-            SDTimeEvent[] temp = timeArray.toArray(new SDTimeEvent[0]);
+        if (fExecutionOccurrencesWithTime != null) {
+            SDTimeEvent[] temp = fExecutionOccurrencesWithTime.toArray(new SDTimeEvent[fExecutionOccurrencesWithTime.size()]);
             Arrays.sort(temp, new TimeEventComparator());
-            timeArray = Arrays.asList(temp);
-            return timeArray;
-        } catch (Exception e) {
-            e.printStackTrace();
-            return null;
+            fExecutionOccurrencesWithTime = Arrays.asList(temp);
         }
-
+        SDTimeEvent[] temp = timeArray.toArray(new SDTimeEvent[timeArray.size()]);
+        Arrays.sort(temp, new TimeEventComparator());
+        timeArray = Arrays.asList(temp);
+        return timeArray;
     }
 
     /**
      * Get the closer leaving message.
-     * 
+     *
      * @param lifeline A lifeline reference
      * @param message A message reference
      * @param list A list of graph nodes
@@ -774,13 +776,13 @@ public class Frame extends BasicFrame {
             return null;
         }
 
-        if (smallerEvent == false) {
+        if (!smallerEvent) {
             int event = 0;
             if (message != null) {
                 event = message.getEventOccurrence();
             }
             for (int i = 0; i < list.size(); i++) {
-                GraphNode node = (GraphNode) list.get(i);
+                GraphNode node = list.get(i);
                 if (node instanceof SyncMessage) {
                     SyncMessage syncNode = (SyncMessage) node;
                     if ((syncNode.getEventOccurrence() > event) && (syncNode.getStartLifeline() == lifeline) && !syncNode.isSameAs(message)) {
@@ -803,7 +805,7 @@ public class Frame extends BasicFrame {
                 }
             }
             for (int i = list.size() - 1; i >= 0; i--) {
-                GraphNode node = (GraphNode) list.get(i);
+                GraphNode node = list.get(i);
                 if (node instanceof SyncMessage) {
                     SyncMessage syncNode = (SyncMessage) node;
                     if ((syncNode.getEventOccurrence() < event) && (syncNode.getStartLifeline() == lifeline) && !syncNode.isSameAs(message)) {
@@ -820,10 +822,10 @@ public class Frame extends BasicFrame {
         return null;
     }
 
-    
+
     /**
      * Get the closer entering message.
-     * 
+     *
      * @param lifeline A lifeline reference
      * @param message A message reference
      * @param list A list of graph nodes
@@ -834,13 +836,13 @@ public class Frame extends BasicFrame {
         if (list == null) {
             return null;
         }
-        if (smallerEvent == false) {
+        if (!smallerEvent) {
             int event = 0;
             if (message != null) {
                 event = message.getEventOccurrence();
             }
             for (int i = 0; i < list.size(); i++) {
-                GraphNode node = (GraphNode) list.get(i);
+                GraphNode node = list.get(i);
                 if (node instanceof SyncMessage) {
                     SyncMessage syncNode = (SyncMessage) node;
                     if ((syncNode.getEventOccurrence() > event) && (syncNode.getEndLifeline() == lifeline) && !syncNode.isSameAs(message)) {
@@ -855,14 +857,15 @@ public class Frame extends BasicFrame {
             }
         } else {
             int event = getMaxEventOccurrence();
-            if (message != null)
+            if (message != null) {
                 if (message instanceof AsyncMessage) {
                     event = ((AsyncMessage) message).getStartOccurrence();
                 } else {
                     event = message.getEventOccurrence();
                 }
+            }
             for (int i = list.size() - 1; i >= 0; i--) {
-                GraphNode node = (GraphNode) list.get(i);
+                GraphNode node = list.get(i);
                 if (node instanceof SyncMessage) {
                     SyncMessage syncNode = (SyncMessage) node;
                     if ((syncNode.getEventOccurrence() < event) && (syncNode.getEndLifeline() == lifeline) && !syncNode.isSameAs(message)) {
@@ -881,7 +884,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Get distance of given event from given graph node.
-     * 
+     *
      * @param node A graph node reference.
      * @param event A event number to check.
      * @return distance of event from graph node.
@@ -904,7 +907,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Get node from 2 given nodes that is close to event.
-     * 
+     *
      * @param node1 A first graph node
      * @param node2 A second graph node
      * @param event A event to check.
@@ -914,20 +917,19 @@ public class Frame extends BasicFrame {
         if ((node1 != null) && (node2 != null)) {
             if (distanceFromEvent(node1, event) < distanceFromEvent(node2, event)) {
                 return node1;
-            } else {
-                return node2;
             }
+            return node2;
         } else if (node1 != null) {
             return node1;
         } else if (node2 != null) {
             return node2;
-        } 
+        }
         return null;
     }
 
     /**
      * Get called message based on given start message.
-     * 
+     *
      * @param startMessage A start message to check.
      * @return called message (graph node) or <code>null</code>
      */
@@ -936,10 +938,10 @@ public class Frame extends BasicFrame {
         GraphNode result = null;
         Lifeline lifeline = null;
         if (startMessage != null) {
-            event = ((BaseMessage) startMessage).getEventOccurrence();
-            lifeline = ((BaseMessage) startMessage).getEndLifeline();
+            event = startMessage.getEventOccurrence();
+            lifeline = startMessage.getEndLifeline();
             if (lifeline == null) {
-                lifeline = ((BaseMessage) startMessage).getStartLifeline();
+                lifeline = startMessage.getStartLifeline();
             }
         }
         if (lifeline == null) {
@@ -957,7 +959,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Get caller message based on given start message.
-     * 
+     *
      * @param startMessage A start message to check.
      * @return called message (graph node) or <code>null</code>
      */
@@ -966,10 +968,10 @@ public class Frame extends BasicFrame {
         GraphNode result = null;
         Lifeline lifeline = null;
         if (startMessage != null) {
-            event = ((BaseMessage) startMessage).getEventOccurrence();
-            lifeline = ((BaseMessage) startMessage).getStartLifeline();
+            event = startMessage.getEventOccurrence();
+            lifeline = startMessage.getStartLifeline();
             if (lifeline == null) {
-                lifeline = ((BaseMessage) startMessage).getEndLifeline();
+                lifeline = startMessage.getEndLifeline();
             }
         }
         if (lifeline == null) {
@@ -987,7 +989,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Get next lifeline based on given message.
-     * 
+     *
      * @param lifeline A lifeline reference
      * @param startMessage A start message to check
      * @return next lifeline or <code>null</code>
@@ -995,7 +997,7 @@ public class Frame extends BasicFrame {
     public GraphNode getNextLifelineMessage(Lifeline lifeline, BaseMessage startMessage) {
         int event = 0;
         if (startMessage != null) {
-            event = ((BaseMessage) startMessage).getEventOccurrence();
+            event = startMessage.getEventOccurrence();
         }
         if (lifeline == null) {
             return null;
@@ -1012,19 +1014,20 @@ public class Frame extends BasicFrame {
 
     /**
      * Get previous lifeline based on given message.
-     * 
+     *
      * @param lifeline A lifeline reference
      * @param startMessage A start message to check.
      * @return previous lifeline or <code>null</code>
      */
     public GraphNode getPrevLifelineMessage(Lifeline lifeline, BaseMessage startMessage) {
         int event = getMaxEventOccurrence();
-        if (startMessage != null)
+        if (startMessage != null) {
             if (startMessage instanceof AsyncMessage) {
                 event = ((AsyncMessage) startMessage).getStartOccurrence();
             } else {
                 event = startMessage.getEventOccurrence();
             }
+        }
         if (lifeline == null) {
             return null;
         }
@@ -1037,10 +1040,10 @@ public class Frame extends BasicFrame {
         result = getCloserToEvent(result, messageReturn, event);
         return result;
     }
-    
+
     /**
      * Get the first execution occurrence.
-     * 
+     *
      * @param lifeline A lifeline reference
      * @return the first execution occurrence of lifeline or <code>null</code>.
      */
@@ -1049,12 +1052,11 @@ public class Frame extends BasicFrame {
             return null;
         }
         List<GraphNode> list = lifeline.getExecutions();
-        if (list == null) {
-            return null;
-        }
-        if (list.size() == 0) {
+
+        if ((list == null) || (list.isEmpty())) {
             return null;
         }
+
         BasicExecutionOccurrence result = (BasicExecutionOccurrence) list.get(0);
         for (int i = 0; i < list.size(); i++) {
             BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
@@ -1064,10 +1066,10 @@ public class Frame extends BasicFrame {
         }
         return result;
     }
-    
+
     /**
      * Get the previous execution occurrence relative to a given execution occurrence.
-     * 
+     *
      * @param exec A execution occurrence reference.
      * @return the previous execution occurrence of lifeline or <code>null</code>.
      */
@@ -1086,10 +1088,10 @@ public class Frame extends BasicFrame {
         BasicExecutionOccurrence result = null;
         for (int i = 0; i < list.size(); i++) {
             BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
-            if ((e.getStartOccurrence() < exec.startEventOccurrence) && (result == null)) {
+            if ((e.getStartOccurrence() < exec.fStartEventOccurrence) && (result == null)) {
                 result = e;
             }
-            if ((e.getStartOccurrence() < exec.startEventOccurrence) && (e.getStartOccurrence() >= result.getEndOccurrence())) {
+            if ((e.getStartOccurrence() < exec.fStartEventOccurrence) && (result != null) && (e.getStartOccurrence() >= result.getEndOccurrence())) {
                 result = e;
             }
         }
@@ -1098,7 +1100,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Get the next execution occurrence relative to a given execution occurrence.
-     * 
+     *
      * @param exec A execution occurrence reference.
      * @return the next execution occurrence of lifeline or <code>null</code>.
      */
@@ -1117,10 +1119,10 @@ public class Frame extends BasicFrame {
         BasicExecutionOccurrence result = null;
         for (int i = 0; i < list.size(); i++) {
             BasicExecutionOccurrence e = (BasicExecutionOccurrence) list.get(i);
-            if ((e.getStartOccurrence() > exec.startEventOccurrence) && (result == null)) {
+            if ((e.getStartOccurrence() > exec.fStartEventOccurrence) && (result == null)) {
                 result = e;
             }
-            if ((e.getStartOccurrence() > exec.startEventOccurrence) && (e.getStartOccurrence() <= result.getEndOccurrence())) {
+            if ((e.getStartOccurrence() > exec.fStartEventOccurrence) && (result != null) && (e.getStartOccurrence() <= result.getEndOccurrence())) {
                 result = e;
             }
         }
@@ -1129,7 +1131,7 @@ public class Frame extends BasicFrame {
 
     /**
      * Get the last execution occurrence.
-     * 
+     *
      * @param lifeline A lifeline reference.
      * @return the last execution occurrence of lifeline or <code>null</code>.
      */
This page took 0.039429 seconds and 5 git commands to generate.