Ignore:
Timestamp:
03/19/09 21:09:15 (3 years ago)
Author:
jharrop
Message:

Font substitution WIP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/src/main/java/org/docx4j/openpackaging/packages/WordprocessingMLPackage.java

    r693 r695  
    3636import org.apache.log4j.Logger; 
    3737import org.docx4j.convert.out.xmlPackage.XmlPackage; 
    38 import org.docx4j.fonts.SubstituterImplPanose; 
     38import org.docx4j.fonts.Substituter; 
    3939import org.docx4j.fonts.FontUtils; 
    4040import org.docx4j.jaxb.Context; 
     
    245245     
    246246     
    247     public void setFontSubstituter(SubstituterImplPanose fs) throws Exception { 
     247    public void setFontSubstituter(Substituter fs) throws Exception { 
    248248        if (fs == null) { 
    249249                throw new IllegalArgumentException("Font Substituter cannot be null."); 
     
    270270    } 
    271271 
    272     public SubstituterImplPanose getFontSubstituter() { 
     272    public Substituter getFontSubstituter() { 
    273273                return fontSubstituter; 
    274274        } 
    275275 
    276         private SubstituterImplPanose fontSubstituter; 
     276        private Substituter fontSubstituter; 
    277277     
    278278         
Note: See TracChangeset for help on using the changeset viewer.