/* $Id$
* Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
- * LICENSE file included with these sources."
+ * LICENSE file included with these sources.
*/
package org.apache.fop.svg;
import org.apache.fop.layout.Area;
import org.apache.fop.layout.FontState;
import org.apache.fop.apps.FOPException;
+import org.apache.fop.layout.LinkSet;
import org.apache.batik.dom.svg.*;
} else {
String pref = props[count].substring(0,
props[count].indexOf(":"));
- System.out.println(pref);
if (pref.equals("xmlns")) {
ns.put(props[count].substring(
props[count].indexOf(":") + 1), rf);
- System.out.println(ns);
}
ns.put("xlink", "http://www.w3.org/1999/xlink");
element.setAttributeNS((String) ns.get(pref),
/* return status */
return new Status(Status.OK);
}
+
+ /**
+ * These method overrides prevent problems with the different types.
+ */
+ public void setIsInTableCell() {
+ }
+
+ public void forceStartOffset(int offset) {
+ }
+
+ public void forceWidth(int width) {
+ }
+
+ public void resetMarker() {
+ }
+
+ public void setLinkSet(LinkSet linkSet) {
+ }
+
+ public Vector getMarkerSnapshot(Vector snapshot) {
+ return snapshot;
+ }
+
+ public void rollback(Vector snapshot) {
+ }
}