Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshawn.f.cook2011-10-20 20:33:28 +0000
committerRoberto E. Escobar2011-10-20 20:33:28 +0000
commit2c27c258431ba1725b28f381ac15c7b5f2603562 (patch)
tree832f594bba049e0cec1541ca50045d592623534e
parent683c5e1fcdbeb340539d8322c87cb64f16dac72d (diff)
downloadorg.eclipse.osee-2c27c258431ba1725b28f381ac15c7b5f2603562.tar.gz
org.eclipse.osee-2c27c258431ba1725b28f381ac15c7b5f2603562.tar.xz
org.eclipse.osee-2c27c258431ba1725b28f381ac15c7b5f2603562.zip
feature[ats_E6W8N]: Implement 3-list relation comp
-rw-r--r--plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeRelationsComponent.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeRelationsComponent.java b/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeRelationsComponent.java
index 7cf6491b483..1cea7a87c79 100644
--- a/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeRelationsComponent.java
+++ b/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeRelationsComponent.java
@@ -44,10 +44,10 @@ public class OseeRelationsComponent extends VerticalLayout implements RelationCo
private boolean lockRelsListener = false;
private ViewArtifact artifact = null;
private final int LISTBOX_MINWIDTH = 100;
- private final Label leftTitle = new Label("");
- private final Label relTypesTitleTop = new Label("Relationship");
- private final Label relTypesTitleBot = new Label("Type");
- private final Label rightTitle = new Label("");
+ private Label leftTitle = new Label("");
+ private Label relTypesTitleTop = new Label("Relationship");
+ private Label relTypesTitleBot = new Label("Type");
+ private Label rightTitle = new Label("");
@Override
public void attach() {
@@ -99,7 +99,7 @@ public class OseeRelationsComponent extends VerticalLayout implements RelationCo
searchPresenter.selectRelationType(artifact, relationType, OseeRelationsComponent.this);
}
} catch (Exception e) {
- System.out.println("OseeRelationsComponent.createLayout - CRITICAL ERROR: (ViewArtifact) relationsListSelect.getValue() threw an exception.");
+ System.out.println("OseeRelationsComponent.createLayout - CRITICAL ERROR: (WebArtifact) relationsListSelect.getValue() threw an exception.");
}
}
}
@@ -115,7 +115,7 @@ public class OseeRelationsComponent extends VerticalLayout implements RelationCo
searchPresenter.selectArtifact(artifact, navigator);
}
} catch (Exception e) {
- System.out.println("OseeRelationsComponent.createLayout - CRITICAL ERROR: (ViewArtifact) relationsListSelect.getValue() threw an exception.");
+ System.out.println("OseeRelationsComponent.createLayout - CRITICAL ERROR: (WebArtifact) relationsListSelect.getValue() threw an exception.");
}
}
}
@@ -131,7 +131,7 @@ public class OseeRelationsComponent extends VerticalLayout implements RelationCo
searchPresenter.selectArtifact(artifact, navigator);
}
} catch (Exception e) {
- System.out.println("OseeRelationsComponent.createLayout - CRITICAL ERROR: (ViewArtifact) relationsListSelect.getValue() threw an exception.");
+ System.out.println("OseeRelationsComponent.createLayout - CRITICAL ERROR: (WebArtifact) relationsListSelect.getValue() threw an exception.");
}
}
}

Back to the top