use of org.freeplane.core.ui.LengthUnits in project freeplane by freeplane.
the class NodeStyleController method getBorderWidth.
public Quantity<LengthUnits> getBorderWidth(NodeModel node) {
final MapModel map = node.getMap();
final LogicalStyleController styleController = LogicalStyleController.getController(modeController);
final Collection<IStyle> style = styleController.getStyles(node);
final Quantity<LengthUnits> borderWidth = getBorderWidth(map, style);
return borderWidth;
}
Aggregations