[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;
|
package com.idcanet.foei.core.x4o;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
import com.idcanet.foei.core.FoeiProcess;
|
import com.idcanet.foei.core.FoeiProcess;
|
||||||
import com.idcanet.foei.core.FoeiProcessFactory;
|
import com.idcanet.foei.core.FoeiProcessFactory;
|
||||||
import com.idcanet.foei.event.EventInput;
|
import com.idcanet.foei.event.EventInput;
|
||||||
|
@ -52,12 +54,15 @@ public class ObjectBindingElement extends AbstractElement {
|
||||||
/**
|
/**
|
||||||
* Do the element
|
* Do the element
|
||||||
*/
|
*/
|
||||||
public void doElementStart(Attributes attributes) throws ElementException {
|
@Override
|
||||||
|
public void doElementStart() throws ElementException {
|
||||||
|
|
||||||
outputID = attributes.getValue("outputID");
|
Map<String,String> attributes = getAttributes();
|
||||||
outputPort = attributes.getValue("outputPort");
|
|
||||||
inputID = attributes.getValue("inputID");
|
outputID = attributes.get("outputID");
|
||||||
inputPort = attributes.getValue("inputPort");
|
outputPort = attributes.get("outputPort");
|
||||||
|
inputID = attributes.get("inputID");
|
||||||
|
inputPort = attributes.get("inputPort");
|
||||||
|
|
||||||
FoeiProcess foei = FoeiProcessFactory.getFoeiProcess();
|
FoeiProcess foei = FoeiProcessFactory.getFoeiProcess();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue