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