Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/ui/BurdownInputParameters.java')
-rw-r--r--plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/ui/BurdownInputParameters.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/ui/BurdownInputParameters.java b/plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/ui/BurdownInputParameters.java
deleted file mode 100644
index f48564ec4b7..00000000000
--- a/plugins/org.eclipse.osee.ats.reports.burndown/src/org/eclipse/osee/ats/reports/burndown/ui/BurdownInputParameters.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (c) 2012 Robert Bosch Engineering and Business Solutions Ltd India. 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
- */
-package org.eclipse.osee.ats.reports.burndown.ui;
-
-import java.util.Date;
-import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
-
-/**
- * @author Praveen Joseph
- */
-public class BurdownInputParameters {
-
- private final Artifact version;
- private final Date startDate;
- private final Date endDate;
-
- public BurdownInputParameters(Artifact version, Date startDate, Date endDate) {
- super();
- this.version = version;
- this.startDate = startDate;
- this.endDate = endDate;
- }
-
- public Artifact getVersion() {
- return version;
- }
-
- public Date getStartDate() {
- return startDate;
- }
-
- public Date getEndDate() {
- return endDate;
- }
-
-} \ No newline at end of file

Back to the top