summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/gui/lifecycle/instance/WfVertexFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/c2kernel/gui/lifecycle/instance/WfVertexFactory.java')
-rw-r--r--src/main/java/com/c2kernel/gui/lifecycle/instance/WfVertexFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/c2kernel/gui/lifecycle/instance/WfVertexFactory.java b/src/main/java/com/c2kernel/gui/lifecycle/instance/WfVertexFactory.java
index e7f0034..91a0837 100644
--- a/src/main/java/com/c2kernel/gui/lifecycle/instance/WfVertexFactory.java
+++ b/src/main/java/com/c2kernel/gui/lifecycle/instance/WfVertexFactory.java
@@ -28,7 +28,7 @@ public class WfVertexFactory implements VertexFactory, WorkflowDialogue
vertexTypeId = (String) typeNameAndConstructionInfo.mInfo;
if (vertexTypeId.equals("Atomic") || vertexTypeId.equals("Composite"))
{
- HashMap<String, Serializable> mhm = new HashMap<String, Serializable>();
+ HashMap<String, Object> mhm = new HashMap<String, Object>();
mhm.put("P1", vertexTypeId);
mhm.put("P2", location);
//************************************************
@@ -52,7 +52,7 @@ public class WfVertexFactory implements VertexFactory, WorkflowDialogue
mRootAct = (CompositeActivity) newContext;
}
@Override
- public void loadThisWorkflow(String newName, HashMap<String, Serializable> hashMap)
+ public void loadThisWorkflow(String newName, HashMap<String, Object> hashMap)
{
String vertexTypeId = (String) hashMap.get("P1");
GraphPoint location = (GraphPoint) hashMap.get("P2");