Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/team/TeamEfficiencyModel.java')
-rw-r--r--plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/team/TeamEfficiencyModel.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/team/TeamEfficiencyModel.java b/plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/team/TeamEfficiencyModel.java
new file mode 100644
index 00000000000..3741e97641f
--- /dev/null
+++ b/plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/team/TeamEfficiencyModel.java
@@ -0,0 +1,32 @@
+/*
+ * 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.reports.efficiency.team;
+
+import java.util.List;
+
+/**
+ * Model Class to store the version efficiency list
+ *
+ * @author Praveen Joseph
+ */
+public class TeamEfficiencyModel {
+
+ private static List<VersionEfficiency> versionEfficiency;
+
+ /**
+ * @param versionEfficiency sets the version efficiency list
+ */
+ public static void setVersionEfficiency(final List<VersionEfficiency> versionEfficiency) {
+ TeamEfficiencyModel.versionEfficiency = versionEfficiency;
+ }
+
+ /**
+ * @return the version efficiency list
+ */
+ public static List<VersionEfficiency> getVersionEfficiency() {
+ return versionEfficiency;
+ }
+}

Back to the top