Changeset 693 for trunk/docx4j/src/main/java/org/docx4j/openpackaging/packages/WordprocessingMLPackage.java
- Timestamp:
- 03/19/09 16:36:56 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docx4j/src/main/java/org/docx4j/openpackaging/packages/WordprocessingMLPackage.java
r682 r693 36 36 import org.apache.log4j.Logger; 37 37 import org.docx4j.convert.out.xmlPackage.XmlPackage; 38 import org.docx4j.fonts.Substituter ;38 import org.docx4j.fonts.SubstituterImplPanose; 39 39 import org.docx4j.fonts.FontUtils; 40 40 import org.docx4j.jaxb.Context; … … 245 245 246 246 247 public void setFontSubstituter(Substituter fs) throws Exception {247 public void setFontSubstituter(SubstituterImplPanose fs) throws Exception { 248 248 if (fs == null) { 249 249 throw new IllegalArgumentException("Font Substituter cannot be null."); … … 270 270 } 271 271 272 public Substituter getFontSubstituter() {272 public SubstituterImplPanose getFontSubstituter() { 273 273 return fontSubstituter; 274 274 } 275 275 276 private Substituter fontSubstituter;276 private SubstituterImplPanose fontSubstituter; 277 277 278 278
Note: See TracChangeset
for help on using the changeset viewer.
