public String updateText(String xmlText, RouteContainer model) {
return xmlText;
}
protected RouteContainer createDummyModel() {
RouteContainer c = new RouteContainer();
RouteSupport route1 = new Route();
Endpoint ep1 = new Endpoint();
Bean bean1 = new Bean();
Bean bean2 = new Bean();
ep1.setId("fileIn1");
ep1.setDescription("Polls files from input folder...");
ep1.setUri("file:///home/lhein/test/input/");
ep1.setLayout(new Rectangle(10, 10, 100, 40));
bean1.setId("procBean1");
bean1.setDescription("Examines the file...");
bean1.setMethod("examineFile");
bean1.setRef("proc1");
bean1.setLayout(new Rectangle(150, 10, 100, 40));
bean2.setId("procBean2");
bean2.setDescription("Examines the file...");
bean2.setMethod("examineFile");
bean2.setRef("proc2");
bean2.setLayout(new Rectangle(300, 10, 100, 40));
ep1.addTargetNode(bean1);
bean1.addTargetNode(bean2);
route1.addChild(bean2);
route1.addChild(ep1);
route1.addChild(bean1);
c.addChild(route1);
Activator.getLogger().debug("Stub marshaller has loaded model: "
+ c.getDebugInfo());
return c;
}