use of org.csstudio.opibuilder.visualparts.BorderStyle in project yamcs-studio by yamcs.
the class AbstractWidgetModel method setBorderStyle.
public void setBorderStyle(BorderStyle borderStyle) {
int i = 0;
for (BorderStyle bs : BorderStyle.values()) {
if (borderStyle == bs) {
break;
}
i++;
}
setPropertyValue(PROP_BORDER_STYLE, i);
}
Aggregations