Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishPids.java')
-rw-r--r--org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishPids.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishPids.java b/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishPids.java
new file mode 100644
index 00000000000..3728fe6a3e9
--- /dev/null
+++ b/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishPids.java
@@ -0,0 +1,52 @@
+/*******************************************************************************
+ * 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.define.blam.operation;
+
+import java.util.ArrayList;
+import java.util.List;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
+import org.eclipse.osee.framework.skynet.core.artifact.ArtifactPersistenceManager;
+import org.eclipse.osee.framework.skynet.core.artifact.Branch;
+import org.eclipse.osee.framework.skynet.core.artifact.search.ArtifactQuery;
+import org.eclipse.osee.framework.skynet.core.utility.Requirements;
+import org.eclipse.osee.framework.ui.skynet.blam.BlamVariableMap;
+import org.eclipse.osee.framework.ui.skynet.blam.operation.AbstractBlam;
+import org.eclipse.osee.framework.ui.skynet.render.IRenderer;
+import org.eclipse.osee.framework.ui.skynet.render.RendererManager;
+
+/**
+ * @author Ryan D. Brooks
+ */
+public class PublishPids extends AbstractBlam {
+
+ /* (non-Javadoc)
+ * @see org.eclipse.osee.framework.ui.skynet.blam.operation.BlamOperation#runOperation(org.eclipse.osee.framework.ui.skynet.blam.BlamVariableMap, org.eclipse.osee.framework.skynet.core.artifact.Branch)
+ */
+ public void runOperation(BlamVariableMap variableMap, IProgressMonitor monitor) throws Exception {
+ Branch branch = variableMap.getBranch("Branch");
+ RendererManager rendererManager = RendererManager.getInstance();
+ Artifact root = ArtifactPersistenceManager.getDefaultHierarchyRootArtifact(branch);
+ Artifact subsysTopFolder = root.getChild(Requirements.SUBSYSTEM_REQUIREMENTS);
+
+ monitor.subTask("Aquiring Subsystem Requirements"); // bulk load for performance reasons
+ ArtifactQuery.getArtifactsFromType(Requirements.SUBSYSTEM_REQUIREMENT, branch);
+
+ for (Artifact subsystem : subsysTopFolder.getChildren()) {
+ if (monitor.isCanceled()) {
+ return;
+ }
+ List<Artifact> children = subsystem.getChildren();
+ IRenderer renderer = rendererManager.getRendererById("org.eclipse.osee.framework.ui.skynet.word");
+ renderer.preview(new ArrayList<Artifact>(children), "Publish Pids", monitor);
+ }
+ }
+} \ No newline at end of file

Back to the top