26 lines
551 B
Java
26 lines
551 B
Java
package jxl.format;
|
|
|
|
public class Border {
|
|
private String string;
|
|
|
|
protected Border(String s) {
|
|
this.string = s;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return this.string;
|
|
}
|
|
|
|
public static final Border NONE = new Border("none");
|
|
|
|
public static final Border ALL = new Border("all");
|
|
|
|
public static final Border TOP = new Border("top");
|
|
|
|
public static final Border BOTTOM = new Border("bottom");
|
|
|
|
public static final Border LEFT = new Border("left");
|
|
|
|
public static final Border RIGHT = new Border("right");
|
|
}
|