Examples of SvgParallelGatewayTo


Examples of com.founder.fix.fixflow.core.impl.flowgraphics.svg.to.SvgParallelGatewayTo

  }

  private String gatewayToSVG(BPMNShape bpmnShape) {

    if (getBaseElement(bpmnShape.getBpmnElement()) instanceof ParallelGateway) {
      return CommonNodeToSVG(bpmnShape, new SvgParallelGatewayTo());
    }
    if (getBaseElement(bpmnShape.getBpmnElement()) instanceof ComplexGateway) {
      return CommonNodeToSVG(bpmnShape, new SvgComplexGatewayTo());
    }
    if (getBaseElement(bpmnShape.getBpmnElement()) instanceof ExclusiveGateway) {
View Full Code Here

Examples of com.founder.fix.fixflow.core.impl.flowgraphics.svg.to.SvgParallelGatewayTo

  private static String comPath = "/svgcomponent/parallelGateway.xml";
 
  public String createComponent(SvgBaseTo svgTo) {
    String result = null;
    try {
      SvgParallelGatewayTo pGateTo = (SvgParallelGatewayTo)svgTo;
      InputStream in = SvgBench.class.getResourceAsStream(comPath);
      Document doc = XmlUtil.read(in);
      String str = doc.getRootElement().asXML();
      str = FlowSvgUtil.replaceAll(str, local_x, StringUtil.getString(pGateTo.getX()+2));
      str = FlowSvgUtil.replaceAll(str, local_y, StringUtil.getString(pGateTo.getY()+2));
      str = FlowSvgUtil.replaceAll(str, id, pGateTo.getId());
      str = FlowSvgUtil.replaceAll(str, text, pGateTo.getLabel());
      result = str;
    } catch (DocumentException e) {
      throw new FixFlowException("",e);
    }
    return result;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.