this.borderWidth = (int) (borderWidth * TWIPS_FACTOR);
if(this.borderWidth == 0) {
this.borderStyle = BORDER_NONE;
}
if(borderColor == null) {
this.borderColor = new RtfColor(this.document, new Color(0, 0, 0));
} else {
this.borderColor = new RtfColor(this.document, borderColor);
}
}