Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/Branch.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/Branch.java34
1 files changed, 30 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/Branch.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/Branch.java
index 181c8c11418..01d7ab0261a 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/Branch.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/Branch.java
@@ -14,6 +14,7 @@ package org.eclipse.osee.framework.core.model;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
+import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.eclipse.core.runtime.IAdaptable;
@@ -60,6 +61,21 @@ public class Branch extends AbstractOseeType implements IAdaptable, IOseeBranch
return getFieldValue(BranchField.PARENT_BRANCH);
}
+ public void internalRemovePurgedBranchFromParent() throws OseeCoreException {
+ if (hasParentBranch()) {
+ Branch parentBranch = getParentBranch();
+ Iterator<Branch> siblings = parentBranch.childBranches.iterator();
+
+ while (siblings.hasNext()) {
+ Branch sibling = siblings.next();
+ if (sibling.isPurged() && sibling.equals(this)) {
+ siblings.remove();
+ break;
+ }
+ }
+ }
+ }
+
public boolean hasParentBranch() throws OseeCoreException {
return getParentBranch() != null;
}
@@ -162,16 +178,26 @@ public class Branch extends AbstractOseeType implements IAdaptable, IOseeBranch
public Collection<Branch> getChildBranches(boolean recurse) throws OseeCoreException {
Set<Branch> children = new HashSet<Branch>();
- getChildBranches(this, children, recurse);
+ getChildBranches(this, children, recurse, false);
+ return children;
+ }
+
+ /**
+ * @return - This method returns all child branches. Including archived and merge child branches.
+ * @throws OseeCoreException
+ */
+ public Collection<Branch> getAllChildBranches(boolean recurse) throws OseeCoreException {
+ Set<Branch> children = new HashSet<Branch>();
+ getChildBranches(this, children, recurse, true);
return children;
}
- private void getChildBranches(Branch parentBranch, Collection<Branch> children, boolean recurse) throws OseeCoreException {
+ private void getChildBranches(Branch parentBranch, Collection<Branch> children, boolean recurse, boolean includeAllChildBranches) throws OseeCoreException {
for (Branch branch : parentBranch.getChildren()) {
- if (branch.getArchiveState().isUnArchived() && !branch.getBranchType().isMergeBranch()) {
+ if (includeAllChildBranches || (branch.getArchiveState().isUnArchived() && !branch.getBranchType().isMergeBranch())) {
children.add(branch);
if (recurse) {
- getChildBranches(branch, children, recurse);
+ getChildBranches(branch, children, recurse, includeAllChildBranches);
}
}
}

Back to the top