// Access
//
////////////////////////////////////////////////////////////////////////////
@Override
public String getText() throws Exception {
BorderProperty border = m_accessor.getSemantics(m_styleName).border;
String width = border.getWidth().get();
String style = border.getStyle().get();
String color = border.getColor().get();
// prepare text
String text = "";
if (width != null) {
width = width.contains(" ") ? "(" + width + ")" : width;
text += width;