104105106107108109110111112
final String drawBorder = result1.getProperty("direction"); if (drawBorder != null) { if ("VERTICAL".equals(drawBorder)) { element.setElementType(new VerticalLineType()); } } }
4950515253545556
{ final Element element = new Element(); applyElementName(element); applyStyle(element.getStyle()); element.setElementType(new VerticalLineType()); return element; }
9899100101102103104105106