[svn r309] updated x4o
This commit is contained in:
parent
deb76203c6
commit
faad156640
Binary file not shown.
|
@ -26,6 +26,8 @@
|
|||
|
||||
package com.idcanet.foei.core.x4o;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import com.idcanet.foei.core.FoeiProcess;
|
||||
import com.idcanet.foei.core.FoeiProcessFactory;
|
||||
import com.idcanet.foei.event.EventInput;
|
||||
|
@ -52,12 +54,15 @@ public class ObjectBindingElement extends AbstractElement {
|
|||
/**
|
||||
* Do the element
|
||||
*/
|
||||
public void doElementStart(Attributes attributes) throws ElementException {
|
||||
@Override
|
||||
public void doElementStart() throws ElementException {
|
||||
|
||||
outputID = attributes.getValue("outputID");
|
||||
outputPort = attributes.getValue("outputPort");
|
||||
inputID = attributes.getValue("inputID");
|
||||
inputPort = attributes.getValue("inputPort");
|
||||
Map<String,String> attributes = getAttributes();
|
||||
|
||||
outputID = attributes.get("outputID");
|
||||
outputPort = attributes.get("outputPort");
|
||||
inputID = attributes.get("inputID");
|
||||
inputPort = attributes.get("inputPort");
|
||||
|
||||
FoeiProcess foei = FoeiProcessFactory.getFoeiProcess();
|
||||
|
||||
|
|
Loading…
Reference in a new issue