Ignore:
Timestamp:
09/19/11 21:52:15 (8 months ago)
Author:
jharrop
Message:

Include Asian options previously dropped from JcEnumeration?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/src/main/java/org/docx4j/wml/JcEnumeration.java

    r359 r1664  
    1919 */ 
    2020 
    21  
    2221package org.docx4j.wml; 
    2322 
     
    3938 *     <enumeration value="right"/> 
    4039 *     <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"/> 
    4146 *   </restriction> 
    4247 * </simpleType> 
     
    7580     */ 
    7681    @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"); 
    78126    private final String value; 
    79127 
Note: See TracChangeset for help on using the changeset viewer.