tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / dialogs / MinMaxDialog.java
index 1b76441a16348e7ac85c40ed3d7d2ca9ee6d5b17..46705d20a4b16d898f851bcfb297fbc50199a87d 100755 (executable)
@@ -1,22 +1,21 @@
 /**********************************************************************
- * 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.dialogs;
 
 import org.eclipse.jface.dialogs.Dialog;
 import org.eclipse.jface.dialogs.IDialogConstants;
 import org.eclipse.jface.dialogs.MessageDialog;
-import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
+import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimestamp;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDWidget;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
 import org.eclipse.swt.SWT;
@@ -32,12 +31,12 @@ import org.eclipse.swt.widgets.Shell;
 import org.eclipse.swt.widgets.Text;
 
 /**
- * Dialog box for entering minimum and maximum time range for time compression bar. 
- * 
+ * Dialog box for entering minimum and maximum time range for time compression bar.
+ *
  * @version 1.0
  * @author sveyrier
  * @author Bernd Hufmann
- * 
+ *
  */
 public class MinMaxDialog extends Dialog {
 
@@ -45,7 +44,7 @@ public class MinMaxDialog extends Dialog {
     // Attributes
     // ------------------------------------------------------------------------
     /**
-     * Label for minimum. 
+     * Label for minimum.
      */
     protected Label fMinLabel;
     /**
@@ -61,19 +60,19 @@ public class MinMaxDialog extends Dialog {
      */
     protected Label fPrecisionLabel;
     /**
-     * Text field for minimum. 
+     * Text field for minimum.
      */
     protected Text fMinText;
     /**
-     * Text field for maximum. 
+     * Text field for maximum.
      */
     protected Text fMaxText;
     /**
-     * Text field for scale. 
+     * Text field for scale.
      */
     protected Text fScaleText;
     /**
-     * Text field for precision. 
+     * Text field for precision.
      */
     protected Text fPrecisionText;
     /**
@@ -87,7 +86,7 @@ public class MinMaxDialog extends Dialog {
     /**
      * Standard constructor.
      * @param shell The shell
-     * @param viewer The sequence diagram widget reference. 
+     * @param viewer The sequence diagram widget reference.
      */
     public MinMaxDialog(Shell shell, SDWidget viewer) {
         super(shell);
@@ -151,7 +150,7 @@ public class MinMaxDialog extends Dialog {
         fScaleText.setLayoutData(newGridData(2));
         fScaleText.setText(String.valueOf(fSdWidget.getFrame().getMinTime().getScale()));
 
-        
+
         fPrecisionLabel = new Label(g1, SWT.RADIO);
         fPrecisionLabel.setText(SDMessages._137);
         fPrecisionLabel.setLayoutData(newGridData(1));
This page took 0.024656 seconds and 5 git commands to generate.