Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.coverage.demo/src/org/eclipse/osee/coverage/demo/examples/import01/epu/PowerUnit2.java')
-rw-r--r--plugins/org.eclipse.osee.coverage.demo/src/org/eclipse/osee/coverage/demo/examples/import01/epu/PowerUnit2.java77
1 files changed, 0 insertions, 77 deletions
diff --git a/plugins/org.eclipse.osee.coverage.demo/src/org/eclipse/osee/coverage/demo/examples/import01/epu/PowerUnit2.java b/plugins/org.eclipse.osee.coverage.demo/src/org/eclipse/osee/coverage/demo/examples/import01/epu/PowerUnit2.java
deleted file mode 100644
index 5ec7643d69a..00000000000
--- a/plugins/org.eclipse.osee.coverage.demo/src/org/eclipse/osee/coverage/demo/examples/import01/epu/PowerUnit2.java
+++ /dev/null
@@ -1,77 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.coverage.demo.examples.import01.epu;
-
-import java.util.logging.Level;
-import org.eclipse.osee.framework.logging.OseeLog;
-import org.eclipse.swt.graphics.Image;
-import org.eclipse.swt.graphics.Point;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Table;
-
-/**
- * @author Donald G. Dunne
- */
-public class PowerUnit2 extends Table {
-
- public Image image;
-
- public PowerUnit2(Composite parent, int style, Image image) {
- super(parent, style);
- }
-
- public Image getImage() {
- try {
- if (getStyle() == 4) { // 1, 1, TestUnit2
- return this.image; // 1, 2, n
- } else {
- return this.image; // 1, 3, TestUnit2
- }
- } catch (IllegalArgumentException ex) {
- OseeLog.log(PowerUnit2.class, Level.SEVERE, ex); // 1, 4, n
-
- } catch (Exception ex) {
- OseeLog.log(PowerUnit2.class, Level.SEVERE, ex); // 1, 5, n
- }
- return null; // 1, 6, n
- }
-
- @Override
- public void clear(int[] indices) {
- if (getStyle() == 4) { // 2, 1, TestUnit2
- System.out.println("clear it"); // 2, 2, n
- } else {
- for (int x = 0; x < 34; x++) {
- System.err.println("clear");// 2, 3, n
- }
- }
- }
-
- @Override
- public void clearAll() {
- System.out.println("clear All"); // 3, 1, TestUnit2
- }
-
- @Override
- public Point computeSize(int wHint, int hHint, boolean changed) {
- if (getStyle() == 4) { // 4, 1, TestUnit2
- return new Point(3, 2); // 4, 2, n
- } else {
- return super.computeSize(wHint, hHint, changed); // 4, 3, TestUnit2
- }
- }
-
- @Override
- public int getColumnCount() {
- return super.getColumnCount(); // 5, 1, TestUnit2
- }
-
-}

Back to the top