first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View 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");
}