Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/wizards/LinkNode.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/wizards/LinkNode.java118
1 files changed, 59 insertions, 59 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/wizards/LinkNode.java b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/wizards/LinkNode.java
index 94f99a08bc5..9a1533914dd 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/wizards/LinkNode.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/wizards/LinkNode.java
@@ -1,60 +1,60 @@
-/*******************************************************************************
- * 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.framework.core.dsl.ui.integration.wizards;
-
-import java.util.ArrayList;
-import java.util.List;
-import org.eclipse.emf.common.util.URI;
-
-/**
- * @author Roberto E. Escobar
- */
-public class LinkNode {
- public LinkNode nodeParent;
- public URI nodeURI;
- public List<LinkNode> children;
- public boolean resolved;
-
- public LinkNode(URI nodeURI) {
- this.nodeURI = nodeURI;
- this.children = new ArrayList<LinkNode>();
- this.resolved = true;
- }
-
- public void addChild(LinkNode node) {
- nodeParent = this;
- children.add(node);
- }
-
- public URI getUri() {
- return nodeURI;
- }
-
- public LinkNode getParent() {
- return nodeParent;
- }
-
- public boolean hasChildren() {
- return !getChildren().isEmpty();
- }
-
- public List<LinkNode> getChildren() {
- return children;
- }
-
- public void setIsResolved(boolean resolved) {
- this.resolved = resolved;
- }
-
- public boolean isResolved() {
- return resolved;
- }
+/*******************************************************************************
+ * 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.framework.core.dsl.ui.integration.wizards;
+
+import java.util.ArrayList;
+import java.util.List;
+import org.eclipse.emf.common.util.URI;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class LinkNode {
+ public LinkNode nodeParent;
+ public URI nodeURI;
+ public List<LinkNode> children;
+ public boolean resolved;
+
+ public LinkNode(URI nodeURI) {
+ this.nodeURI = nodeURI;
+ this.children = new ArrayList<LinkNode>();
+ this.resolved = true;
+ }
+
+ public void addChild(LinkNode node) {
+ nodeParent = this;
+ children.add(node);
+ }
+
+ public URI getUri() {
+ return nodeURI;
+ }
+
+ public LinkNode getParent() {
+ return nodeParent;
+ }
+
+ public boolean hasChildren() {
+ return !getChildren().isEmpty();
+ }
+
+ public List<LinkNode> getChildren() {
+ return children;
+ }
+
+ public void setIsResolved(boolean resolved) {
+ this.resolved = resolved;
+ }
+
+ public boolean isResolved() {
+ return resolved;
+ }
} \ No newline at end of file

Back to the top