Ignore:
Timestamp:
09/06/10 05:36:48 (21 months ago)
Author:
jharrop
Message:

Implementation of xlsx (ECMA 376 1st ed)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/src/main/java/org/docx4j/openpackaging/contenttype/ContentTypes.java

    r1130 r1199  
    209209                "application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml";  
    210210           
     211        // PartName="/xl/workbook.xml" 
     212        public final static String SPREADSHEETML_MAIN =  
     213                "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"; 
     214 
     215        public final static String SPREADSHEETML_PRINTER_SETTINGS =  
     216                "application/vnd.openxmlformats-officedocument.spreadsheetml.printerSettings"; 
     217 
     218        // PartName="/xl/styles.xml" 
     219        public final static String SPREADSHEETML_STYLES =  
     220                "application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"; 
     221         
     222        // PartName="/xl/worksheets/sheet1.xml" 
     223        public final static String SPREADSHEETML_WORKSHEET =  
     224                "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"; 
     225         
     226        // PartName="/xl/calcChain.xml" 
     227        public final static String SPREADSHEETML_CALC_CHAIN =  
     228                "application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml"; 
     229         
     230        // PartName="/xl/sharedStrings.xml" 
     231        public final static String SPREADSHEETML_SHARED_STRINGS =  
     232                "application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"; 
     233         
    211234        /* 
    212235         * Open Packaging Convention (Annex F : Standard Namespaces and Content 
Note: See TracChangeset for help on using the changeset viewer.