Start to rename hslf and hwpf in ooxml to xslf and xwpf

git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@635031 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2008-03-08 18:09:07 +00:00
parent 36df1396ed
commit 4f0afb0335
10 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ public class HXFPowerPointExtractor extends POIXMLTextExtractor {
public HXFPowerPointExtractor(Package container) throws XmlException, OpenXML4JException, IOException {
this(new HSLFXMLSlideShow(
new HSLFXML(container)
new XSLFXML(container)
));
}
public HXFPowerPointExtractor(HSLFXMLSlideShow slideshow) {

View File

@ -26,14 +26,14 @@ import org.apache.poi.hslf.HSLFXML;
* top level object for creating new slides/etc.
*/
public class HSLFXMLSlideShow extends POIXMLDocument {
private org.apache.poi.hslf.HSLFXML hslfXML;
private org.apache.poi.hslf.XSLFXML hslfXML;
public HSLFXMLSlideShow(HSLFXML xml) {
public HSLFXMLSlideShow(XSLFXML xml) {
super(xml);
this.hslfXML = xml;
}
public HSLFXML _getHSLFXML() {
public XSLFXML _getHSLFXML() {
return hslfXML;
}
}