1 19 20 package jxl.format; 21 22 25 public class BoldStyle 26 { 27 30 private int value; 31 32 35 private String string; 36 37 42 protected BoldStyle(int val, String s) 43 { 44 value = val; 45 string = s; 46 } 47 48 54 public int getValue() 55 { 56 return value ; 57 } 58 59 62 public String getDescription() 63 { 64 return string; 65 } 66 67 70 public static final BoldStyle NORMAL = new BoldStyle(0x190, "Normal"); 71 74 public static final BoldStyle BOLD = new BoldStyle(0x2bc, "Bold"); 75 } 76 77 78 79 80 81 82 | Popular Tags |