private static String text_y="{text_y}";
public String createComponent(SvgBaseTo svgTo) {
String result = null;
try {
SvgAssocationTo assoTo = (SvgAssocationTo)svgTo;
InputStream in = SvgBench.class.getResourceAsStream(comPath);
Document doc = XmlUtil.read(in);
String str = doc.getRootElement().asXML();
str = FlowSvgUtil.replaceAll(str, id, assoTo.getId());
str = FlowSvgUtil.replaceAll(str, text, assoTo.getLabel());
List<SvgPoint> pointList = assoTo.getSvgPointList();
StringBuffer pointPath = new StringBuffer();
String textx = null;
String texty = null;
int size = pointList.size();