Writer2xhtml custom config ui + API changes

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@53 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2010-03-15 08:49:05 +00:00
parent 6c82e57709
commit e0cb22dd2e
23 changed files with 221 additions and 43 deletions

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2008 by Henrik Just
* Copyright: 2002-2010 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.0 (2008-11-23)
* Version 1.2 (2010-03-15)
*
*/
@ -161,5 +161,15 @@ public class BinaryGraphicsDocument implements Document {
* @return String The document's MIME type.
*/
public String getDocumentMIMEType(){ return sMimeType; }
public String getMIMEType() {
return sMimeType;
}
public int getSequenceNumber() {
return -1;
}
}

View file

@ -37,7 +37,7 @@
************************************************************************/
// This version is adapted for writer2latex
// Version 1.0 (2008-11-23)
// Version 1.2 (2010-03-15)
package writer2latex.xmerge;
@ -393,6 +393,15 @@ public class DOMDocument
return doc;
}
// TODO: We need these because we implement OutputFile (don't do that..)
public String getMIMEType() {
return "";
}
public int getSequenceNumber() {
return -1;
}
}

View file

@ -37,7 +37,7 @@
************************************************************************/
// This version is adapted for Writer2LaTeX
// Version 1.0 (2008-11-22)
// Version 1.2 (2010-03-15)
package writer2latex.xmerge;
@ -1282,5 +1282,15 @@ public class OfficeDocument
manifestRoot.appendChild(docRoot);
}
// TODO: We need these because we implement OutputFile (but in fact we shouldn't)
public String getMIMEType() {
return "";
}
public int getSequenceNumber() {
return -1;
}
}