1 19 20 package jxl.format; 21 22 25 public class Border 26 { 27 30 private String string; 31 32 35 protected Border(String s) 36 { 37 string = s; 38 } 39 40 43 public String getDescription() 44 { 45 return string; 46 } 47 48 public final static Border NONE = new Border("none"); 49 public final static Border ALL = new Border("all"); 50 public final static Border TOP = new Border("top"); 51 public final static Border BOTTOM = new Border("bottom"); 52 public final static Border LEFT = new Border("left"); 53 public final static Border RIGHT = new Border("right"); 54 } 55 56 | Popular Tags |