Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ActionArtifact.java')
-rw-r--r--org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ActionArtifact.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ActionArtifact.java b/org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ActionArtifact.java
index 645520892d5..38c6cd091f3 100644
--- a/org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ActionArtifact.java
+++ b/org.eclipse.osee.ats/src/org/eclipse/osee/ats/artifact/ActionArtifact.java
@@ -237,6 +237,16 @@ public class ActionArtifact extends ATSArtifact implements IWorldViewArtifact {
return sb.toString().replaceFirst(", $", "");
}
+ public String getWorldViewPoint() throws OseeCoreException {
+ StringBuffer sb = new StringBuffer();
+ for (TeamWorkFlowArtifact team : getTeamWorkFlowArtifacts()) {
+ if (!team.getWorldViewPoint().equals("")) {
+ sb.append(team.getWorldViewPoint() + ", ");
+ }
+ }
+ return sb.toString().replaceFirst(", $", "");
+ }
+
public String getWorldViewNumberOfTasks() throws OseeCoreException {
StringBuffer sb = new StringBuffer();
for (TeamWorkFlowArtifact team : getTeamWorkFlowArtifacts()) {

Back to the top