Changeset 1664 for trunk/docx4j/src/main/java
- Timestamp:
- 09/19/11 21:52:15 (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docx4j/src/main/java/org/docx4j/wml/JcEnumeration.java
r359 r1664 19 19 */ 20 20 21 22 21 package org.docx4j.wml; 23 22 … … 39 38 * <enumeration value="right"/> 40 39 * <enumeration value="both"/> 40 * <enumeration value="mediumKashida"/> 41 * <enumeration value="distribute"/> 42 * <enumeration value="numTab"/> 43 * <enumeration value="highKashida"/> 44 * <enumeration value="lowKashida"/> 45 * <enumeration value="thaiDistribute"/> 41 46 * </restriction> 42 47 * </simpleType> … … 75 80 */ 76 81 @XmlEnumValue("both") 77 BOTH("both"); 82 BOTH("both"), 83 84 /** 85 * Medium Kashida Length 86 * 87 */ 88 @XmlEnumValue("mediumKashida") 89 MEDIUM_KASHIDA("mediumKashida"), 90 91 /** 92 * Distribute All Characters Equally 93 * 94 * 95 */ 96 @XmlEnumValue("distribute") 97 DISTRIBUTE("distribute"), 98 99 /** 100 * Align to List Tab 101 * 102 */ 103 @XmlEnumValue("numTab") 104 NUM_TAB("numTab"), 105 106 /** 107 * Widest Kashida Length 108 * 109 */ 110 @XmlEnumValue("highKashida") 111 HIGH_KASHIDA("highKashida"), 112 113 /** 114 * Low Kashida Length 115 * 116 */ 117 @XmlEnumValue("lowKashida") 118 LOW_KASHIDA("lowKashida"), 119 120 /** 121 * Thai Language Justification 122 * 123 */ 124 @XmlEnumValue("thaiDistribute") 125 THAI_DISTRIBUTE("thaiDistribute"); 78 126 private final String value; 79 127
Note: See TracChangeset
for help on using the changeset viewer.
