Browse Source

REPORT-33031 review 改进

research/11.0
Hugh.C 5 years ago
parent
commit
252c889448
  1. 20
      fine-itext/src/main/java/com/fr/third/v2/lowagie/text/html/BorderAttribute.java

20
fine-itext/src/main/java/com/fr/third/v2/lowagie/text/html/BorderAttribute.java

@ -14,38 +14,20 @@ public class BorderAttribute {
protected Border bottom = new Border(); protected Border bottom = new Border();
protected Border left = new Border(); protected Border left = new Border();
public Border getTop() { public Border getTop() { return top; }
return top;
}
public void setTop(Border top) {
this.top = top;
}
public Border getRight() { public Border getRight() {
return right; return right;
} }
public void setRight(Border right) {
this.right = right;
}
public Border getBottom() { public Border getBottom() {
return bottom; return bottom;
} }
public void setBottom(Border bottom) {
this.bottom = bottom;
}
public Border getLeft() { public Border getLeft() {
return left; return left;
} }
public void setLeft(Border left) {
this.left = left;
}
/** /**
* 将解析好的边框属性转化为 BorderAttribute * 将解析好的边框属性转化为 BorderAttribute
* *

Loading…
Cancel
Save