Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormpotterc0k2013-10-18 19:46:09 +0000
committermpotterc0k2013-10-30 22:12:43 +0000
commita55a843eeeb81547698dbb2244bdf4b3d3e8798d (patch)
tree78452eb145f9004370153540d0c5af442a1f5178 /plugins/org.eclipse.osee.framework.core
parent7de00e4c399f029c76fd6d996e0d148429f6fe66 (diff)
downloadorg.eclipse.osee-a55a843eeeb81547698dbb2244bdf4b3d3e8798d.tar.gz
org.eclipse.osee-a55a843eeeb81547698dbb2244bdf4b3d3e8798d.tar.xz
org.eclipse.osee-a55a843eeeb81547698dbb2244bdf4b3d3e8798d.zip
refactor[ats_37M02]: Move functionality from DataloaderFactory to DataLoader0.15.0.v201310311538_RC
Change-Id: If3d3f604598f995c0284ef5d3a67ed3d4b8eee74 Signed-off-by: mpotterc0k <marc.a.potter@boeing.com>
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/LoadLevel.java19
1 files changed, 7 insertions, 12 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/LoadLevel.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/LoadLevel.java
index ea44b2d191f..b2b47d0f150 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/LoadLevel.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/LoadLevel.java
@@ -17,25 +17,20 @@ package org.eclipse.osee.framework.core.enums;
* @author Ryan D. Brooks
*/
public enum LoadLevel {
- SHALLOW,
- FULL,
- RELATION,
- ATTRIBUTE,
- ALL_CURRENT;
+ ARTIFACT_DATA,
+ ALL,
+ RELATION_DATA,
+ ARTIFACT_AND_ATTRIBUTE_DATA;
public boolean isShallow() {
- return this == SHALLOW;
+ return this == ARTIFACT_DATA;
}
public boolean isRelationsOnly() {
- return this == RELATION;
- }
-
- public boolean isHead() {
- return this == ALL_CURRENT;
+ return this == RELATION_DATA;
}
public boolean isAttributesOnly() {
- return this == ATTRIBUTE;
+ return this == ARTIFACT_AND_ATTRIBUTE_DATA;
}
}

Back to the top