1 17 18 19 20 package org.apache.fop.render.rtf.rtflib.rtfdoc; 21 22 28 29 30 31 32 33 public interface IBorderAttributes { 34 35 36 String BORDER_LEFT = "brdrl"; 37 38 String BORDER_RIGHT = "brdrr"; 39 40 String BORDER_TOP = "brdrt"; 41 42 String BORDER_BOTTOM = "brdrb"; 43 44 String BORDER_CHARACTER = "chbrdr"; 45 46 String BORDER_SINGLE_THICKNESS = "brdrs"; 47 48 String BORDER_DOUBLE_THICKNESS = "brdrth"; 49 50 String BORDER_SHADOWED = "brdrsh"; 51 52 String BORDER_DOUBLE = "brdrdb"; 53 54 String BORDER_DOTTED = "brdrdot"; 55 56 String BORDER_DASH = "brdrdash"; 57 58 String BORDER_HAIRLINE = "brdrhair"; 59 60 String BORDER_DASH_SMALL = "brdrdashsm"; 61 62 String BORDER_DOT_DASH = "brdrdashd"; 63 64 String BORDER_DOT_DOT_DASH = "brdrdashdd"; 65 66 String BORDER_TRIPLE = "brdrtriple"; 67 68 String BORDER_THINK_THIN_SMALL = "brdrtnthsg"; 69 70 String BORDER_THIN_THICK_SMALL = "brdrthtnsg"; 71 72 String BORDER_THIN_THICK_THIN_SMALL = "brdrthtnthsg"; 73 74 String BORDER_THINK_THIN_MEDIUM = "brdrtnthmg"; 75 76 String BORDER_THIN_THICK_MEDIUM = "brdrthtnmg"; 77 78 String BORDER_THIN_THICK_THIN_MEDIUM = "brdrthtnthmg"; 79 80 String BORDER_THINK_THIN_LARGE = "brdrtnthlg"; 81 82 String BORDER_THIN_THICK_LARGE = "brdrthtnlg"; 83 84 String BORDER_THIN_THICK_THIN_LARGE = "brdrthtnthlg"; 85 86 String BORDER_WAVY = "brdrwavy"; 87 88 String BORDER_WAVY_DOUBLE = "brdrwavydb"; 89 90 String BORDER_STRIPED = "brdrdashdotstr"; 91 92 String BORDER_EMBOSS = "brdremboss"; 93 94 String BORDER_ENGRAVE = "brdrengrave"; 95 96 String BORDER_NIL = "brdrnil"; 97 98 String BORDER_COLOR = "brdrcf"; 99 100 String BORDER_SPACE = "brsp"; 101 102 String BORDER_WIDTH = "brdrw"; 103 104 105 String [] BORDERS = new String [] { 106 BORDER_SINGLE_THICKNESS, BORDER_DOUBLE_THICKNESS, BORDER_SHADOWED, 107 BORDER_DOUBLE, BORDER_DOTTED, BORDER_DASH, 108 BORDER_HAIRLINE, BORDER_DASH_SMALL, BORDER_DOT_DASH, 109 BORDER_DOT_DOT_DASH, BORDER_TRIPLE, BORDER_THINK_THIN_SMALL, 110 BORDER_THIN_THICK_SMALL, BORDER_THIN_THICK_THIN_SMALL, BORDER_THINK_THIN_MEDIUM, 111 BORDER_THIN_THICK_MEDIUM, BORDER_THIN_THICK_THIN_MEDIUM, BORDER_THINK_THIN_LARGE, 112 BORDER_THIN_THICK_LARGE, BORDER_THIN_THICK_THIN_LARGE, BORDER_WAVY, 113 BORDER_WAVY_DOUBLE, BORDER_STRIPED, BORDER_EMBOSS, 114 BORDER_ENGRAVE, BORDER_COLOR, BORDER_SPACE, 115 BORDER_WIDTH 116 }; 117 } 118 | Popular Tags |