1 14 package org.wings; 15 16 22 public interface SConstants { 23 26 String UID_DIVIDER = "_"; 27 28 33 String IEFIX_BUTTONACTION = "buttonAction"; 34 35 38 int NO_ALIGN = -1; 39 42 int LEFT_ALIGN = 0; 43 46 int LEFT = LEFT_ALIGN; 47 50 int RIGHT_ALIGN = 1; 51 54 int RIGHT = RIGHT_ALIGN; 55 58 int CENTER_ALIGN = 2; 59 62 int CENTER = CENTER_ALIGN; 63 66 int BLOCK_ALIGN = 3; 67 70 int TOP_ALIGN = 4; 71 74 int TOP = TOP_ALIGN; 75 78 int BOTTOM_ALIGN = 5; 79 82 int BOTTOM = BOTTOM_ALIGN; 83 86 int JUSTIFY = BLOCK_ALIGN; 87 90 int BASELINE = 6; 91 92 int VERTICAL = 1; 93 int HORIZONTAL = 0; 94 95 } 96 97 98 | Popular Tags |