Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/workflow/item/AtsStatePercentCompleteWeightSimpleWorkflowRule.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/workflow/item/AtsStatePercentCompleteWeightSimpleWorkflowRule.java60
1 files changed, 30 insertions, 30 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/workflow/item/AtsStatePercentCompleteWeightSimpleWorkflowRule.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/workflow/item/AtsStatePercentCompleteWeightSimpleWorkflowRule.java
index 55e8fbdc42c..4191401a421 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/workflow/item/AtsStatePercentCompleteWeightSimpleWorkflowRule.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/workflow/item/AtsStatePercentCompleteWeightSimpleWorkflowRule.java
@@ -1,30 +1,30 @@
-/*******************************************************************************
- * 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.ats.workflow.item;
-
-import org.eclipse.osee.ats.workflow.flow.SimpleWorkflowDefinition.SimpleState;
-
-/**
- * @author Donald G. Dunne
- */
-public class AtsStatePercentCompleteWeightSimpleWorkflowRule extends AtsStatePercentCompleteWeightRule {
-
- public static String ID = "atsStatePercentCompleteWeight.SimpleWorkflow";
-
- public AtsStatePercentCompleteWeightSimpleWorkflowRule() {
- super(ID, ID);
- setDescription("State Percent Complete rule where InWork work is performed.");
- addWorkDataKeyValue(SimpleState.Endorse.name(), ".10");
- addWorkDataKeyValue(SimpleState.InWork.name(), ".89");
- addWorkDataKeyValue(SimpleState.Completed.name(), ".01");
- }
-
-}
+/*******************************************************************************
+ * 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.ats.workflow.item;
+
+import org.eclipse.osee.ats.workflow.flow.SimpleWorkflowDefinition.SimpleState;
+
+/**
+ * @author Donald G. Dunne
+ */
+public class AtsStatePercentCompleteWeightSimpleWorkflowRule extends AtsStatePercentCompleteWeightRule {
+
+ public static String ID = "atsStatePercentCompleteWeight.SimpleWorkflow";
+
+ public AtsStatePercentCompleteWeightSimpleWorkflowRule() {
+ super(ID, ID);
+ setDescription("State Percent Complete rule where InWork work is performed.");
+ addWorkDataKeyValue(SimpleState.Endorse.name(), ".10");
+ addWorkDataKeyValue(SimpleState.InWork.name(), ".89");
+ addWorkDataKeyValue(SimpleState.Completed.name(), ".01");
+ }
+
+}

Back to the top