first commit
This commit is contained in:
25
hrmsEjb/jxl/format/Border.java
Normal file
25
hrmsEjb/jxl/format/Border.java
Normal file
@@ -0,0 +1,25 @@
|
||||
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");
|
||||
}
|
Reference in New Issue
Block a user