Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.coverage.test/src/org/eclipse/osee/coverage/test/import8/nav/NavigationButton2.java')
-rw-r--r--plugins/org.eclipse.osee.coverage.test/src/org/eclipse/osee/coverage/test/import8/nav/NavigationButton2.java100
1 files changed, 50 insertions, 50 deletions
diff --git a/plugins/org.eclipse.osee.coverage.test/src/org/eclipse/osee/coverage/test/import8/nav/NavigationButton2.java b/plugins/org.eclipse.osee.coverage.test/src/org/eclipse/osee/coverage/test/import8/nav/NavigationButton2.java
index 04213e38a52..5aee7d44c66 100644
--- a/plugins/org.eclipse.osee.coverage.test/src/org/eclipse/osee/coverage/test/import8/nav/NavigationButton2.java
+++ b/plugins/org.eclipse.osee.coverage.test/src/org/eclipse/osee/coverage/test/import8/nav/NavigationButton2.java
@@ -8,53 +8,53 @@
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
-package org.eclipse.osee.coverage.test.import8.nav;
-
-import java.util.logging.Level;
-import org.eclipse.osee.coverage.internal.Activator;
-import org.eclipse.osee.framework.logging.OseeLog;
-import org.eclipse.swt.graphics.Image;
-import org.eclipse.swt.widgets.Button;
-import org.eclipse.swt.widgets.Composite;
-
-/**
- * @author Donald G. Dunne
- */
-public class NavigationButton2 extends Button {
-
- public Image image;
-
- /**
- * @param parent
- * @param style
- */
- public NavigationButton2(Composite parent, int style, Image image) {
- super(parent, style);
- }
-
- @Override
- public String getText() {
- try {
- if (getStyle() == 4) { // 1, 1, TestUnit2
- }
- } catch (Exception ex) {
- OseeLog.log(Activator.class, Level.SEVERE, ex); // 1, 2, n
- }
- return "Navigate"; // 1, 3, n
- }
-
- @Override
- public Image getImage() {
- try {
- if (getStyle() == 4) { // 2, 1, TestUnit2
- return this.image; // 2, 2, n
- } else {
- return super.getImage(); // 2, 3, TestUnit2
- }
- } catch (IllegalArgumentException ex) {
- OseeLog.log(Activator.class, Level.SEVERE, ex); // 2, 4, n
- }
- return null; // 2, 5, n
- }
-
-}
+package org.eclipse.osee.coverage.test.import8.nav;
+
+import java.util.logging.Level;
+import org.eclipse.osee.coverage.internal.Activator;
+import org.eclipse.osee.framework.logging.OseeLog;
+import org.eclipse.swt.graphics.Image;
+import org.eclipse.swt.widgets.Button;
+import org.eclipse.swt.widgets.Composite;
+
+/**
+ * @author Donald G. Dunne
+ */
+public class NavigationButton2 extends Button {
+
+ public Image image;
+
+ /**
+ * @param parent
+ * @param style
+ */
+ public NavigationButton2(Composite parent, int style, Image image) {
+ super(parent, style);
+ }
+
+ @Override
+ public String getText() {
+ try {
+ if (getStyle() == 4) { // 1, 1, TestUnit2
+ }
+ } catch (Exception ex) {
+ OseeLog.log(Activator.class, Level.SEVERE, ex); // 1, 2, n
+ }
+ return "Navigate"; // 1, 3, n
+ }
+
+ @Override
+ public Image getImage() {
+ try {
+ if (getStyle() == 4) { // 2, 1, TestUnit2
+ return this.image; // 2, 2, n
+ } else {
+ return super.getImage(); // 2, 3, TestUnit2
+ }
+ } catch (IllegalArgumentException ex) {
+ OseeLog.log(Activator.class, Level.SEVERE, ex); // 2, 4, n
+ }
+ return null; // 2, 5, n
+ }
+
+}

Back to the top