Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/model/ITestUnitProvider.java')
-rw-r--r--plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/model/ITestUnitProvider.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/model/ITestUnitProvider.java b/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/model/ITestUnitProvider.java
deleted file mode 100644
index c50ad1c59b1..00000000000
--- a/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/model/ITestUnitProvider.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010 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.model;
-
-import java.util.Collection;
-import org.eclipse.osee.framework.jdk.core.type.OseeCoreException;
-import org.eclipse.osee.framework.skynet.core.transaction.SkynetTransaction;
-
-/**
- * Allow external mechnism for test units to be provided to UI
- *
- * @author Donald G. Dunne
- */
-public interface ITestUnitProvider {
-
- public Collection<String> getTestUnits(CoverageItem coverageItem) throws OseeCoreException;
-
- public void addTestUnit(CoverageItem coverageItem, String testUnitName) throws OseeCoreException;
-
- public void removeTestUnit(CoverageItem coverageItem, String testUnitName) throws OseeCoreException;
-
- public void setTestUnits(CoverageItem coverageItem, Collection<String> testUnitNames) throws OseeCoreException;
-
- public String toXml(CoverageItem coverageItem) throws OseeCoreException;
-
- public void fromXml(CoverageItem coverageItem, String xml) throws OseeCoreException;
-
- public void save(SkynetTransaction transaction) throws OseeCoreException;
-
- public void reset() throws OseeCoreException;
-
-}

Back to the top