summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/gui/tabs/outcome/form/OutcomeStructure.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/gui/tabs/outcome/form/OutcomeStructure.java')
-rw-r--r--[-rwxr-xr-x]source/com/c2kernel/gui/tabs/outcome/form/OutcomeStructure.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/com/c2kernel/gui/tabs/outcome/form/OutcomeStructure.java b/source/com/c2kernel/gui/tabs/outcome/form/OutcomeStructure.java
index 9333bf8..a535da6 100755..100644
--- a/source/com/c2kernel/gui/tabs/outcome/form/OutcomeStructure.java
+++ b/source/com/c2kernel/gui/tabs/outcome/form/OutcomeStructure.java
@@ -36,8 +36,8 @@ public abstract class OutcomeStructure extends JPanel {
ElementDecl model;
Element myElement = null;
boolean readOnly;
- HashMap subStructure = new HashMap();
- ArrayList order = new ArrayList();
+ HashMap<String, OutcomeStructure> subStructure = new HashMap<String, OutcomeStructure>();
+ ArrayList<String> order = new ArrayList<String>();
String help = "<i>"+Language.translate("No help is available for this element")+"</i>";
HelpPane helpPane;
boolean deferChild = false;
@@ -46,7 +46,7 @@ public abstract class OutcomeStructure extends JPanel {
this.model = model;
this.readOnly = readOnly;
this.helpPane = helpPane;
- subStructure = new HashMap();
+ subStructure = new HashMap<String, OutcomeStructure>();
Logger.msg(8, "Creating " + model.getName() + " structure as " +
this.getClass().getName().substring(this.getClass().getName().lastIndexOf('.') + 1));