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/parts/relationships/Namespaces.java

    r1121 r1199  
    197197         
    198198 
     199 
     200        // xl/workbook.xml 
     201        public final static String SPREADSHEETML_WORKBOOK =  
     202                "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"; 
     203 
     204        // worksheets/sheet1.xml 
     205        public final static String SPREADSHEETML_WORKSHEET =  
     206                "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet"; 
     207 
     208        // ../printerSettings/printerSettings1.bin 
     209        public final static String SPREADSHEETML_PRINTER_SETTINGS =  
     210                "http://schemas.openxmlformats.org/officeDocument/2006/relationships/printerSettings"; 
     211 
     212        // calcChain.xml 
     213        public final static String SPREADSHEETML_CALC_CHAIN =  
     214                "http://schemas.openxmlformats.org/officeDocument/2006/relationships/calcChain"; 
     215 
     216        // sharedStrings.xml 
     217        public final static String SPREADSHEETML_SHARED_STRINGS =  
     218                "http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings"; 
     219 
     220        // styles.xml 
     221        public final static String SPREADSHEETML_STYLES =  
     222                "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"; 
     223 
     224         
    199225             
    200226//      public final static String NS_OFFICE = "urn:schemas-microsoft-com:office:office"; 
Note: See TracChangeset for help on using the changeset viewer.