- Timestamp:
- 09/19/11 21:52:15 (8 months ago)
- Location:
- trunk/docx4j
- Files:
-
- 2 edited
-
src/main/java/org/docx4j/wml/JcEnumeration.java (modified) (3 diffs)
-
xsd/wml/wml.xsd (modified) (3 diffs)
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 -
trunk/docx4j/xsd/wml/wml.xsd
r1474 r1664 140 140 schemaLocation="../shared/shared-math.xsd" /> 141 141 142 <!-- 2011 09 20 include this to compile wml.xsd directly with jaxb-ri-20110601 --> 143 <xsd:import id="dml" namespace="http://schemas.openxmlformats.org/drawingml/2006/main" 144 schemaLocation="../dml/dml__ROOT.xsd" /> 142 145 143 146 <xsd:import id="wp" namespace="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" 144 147 schemaLocation="../dml/dml-wordprocessingDrawing.xsd" /> 148 149 145 150 146 151 <!-- Used in FontRel --> … … 2530 2535 </xsd:restriction> 2531 2536 </xsd:simpleType> 2532 2537 2533 2538 <xsd:simpleType name="JcEnumeration"> <!-- was "ST_Jc" --> 2534 2539 <xsd:annotation> … … 2554 2559 <xsd:annotation> 2555 2560 <xsd:documentation>Justified</xsd:documentation> 2561 </xsd:annotation> 2562 </xsd:enumeration> 2563 <xsd:enumeration value="mediumKashida"> 2564 <xsd:annotation> 2565 <xsd:documentation>Medium Kashida Length</xsd:documentation> 2566 </xsd:annotation> 2567 </xsd:enumeration> 2568 <xsd:enumeration value="distribute"> 2569 <xsd:annotation> 2570 <xsd:documentation>Distribute All Characters Equally 2571 </xsd:documentation> 2572 </xsd:annotation> 2573 </xsd:enumeration> 2574 <xsd:enumeration value="numTab"> 2575 <xsd:annotation> 2576 <xsd:documentation>Align to List Tab</xsd:documentation> 2577 </xsd:annotation> 2578 </xsd:enumeration> 2579 <xsd:enumeration value="highKashida"> 2580 <xsd:annotation> 2581 <xsd:documentation>Widest Kashida Length</xsd:documentation> 2582 </xsd:annotation> 2583 </xsd:enumeration> 2584 <xsd:enumeration value="lowKashida"> 2585 <xsd:annotation> 2586 <xsd:documentation>Low Kashida Length</xsd:documentation> 2587 </xsd:annotation> 2588 </xsd:enumeration> 2589 <xsd:enumeration value="thaiDistribute"> 2590 <xsd:annotation> 2591 <xsd:documentation>Thai Language Justification</xsd:documentation> 2556 2592 </xsd:annotation> 2557 2593 </xsd:enumeration>
Note: See TracChangeset
for help on using the changeset viewer.
