hillion 01/07/31 07:52:19 Modified: sources/org/apache/batik/css/svg SVGCSSReadOnlyValue.java SVGCSSValue.java sources/org/apache/batik/dom/svg SVGOMElement.java SVGOMFEOffsetElement.java SVGOMMaskElement.java SVGOMPatternElement.java SVGOMSVGElement.java SVGOMTextElement.java sources/org/apache/batik/swing/svg JSVGComponent.java sources/org/w3c/dom/svg SVGColor.java SVGElement.java SVGElementInstanceList.java SVGFEImageElement.java SVGFEOffsetElement.java SVGGradientElement.java SVGMaskElement.java SVGPaint.java SVGPatternElement.java SVGSVGElement.java SVGTextElement.java SVGURIReference.java SVGViewElement.java SVGZoomAndPan.java Added: sources/org/w3c/dom/svg SVGMPathElement.java Log: Updated SVG DOM java bindings. Revision Changes Path 1.2 +13 -1 xml-batik/sources/org/apache/batik/css/svg/SVGCSSReadOnlyValue.java Index: SVGCSSReadOnlyValue.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/css/svg/SVGCSSReadOnlyValue.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGCSSReadOnlyValue.java 2001/02/12 06:18:25 1.1 +++ SVGCSSReadOnlyValue.java 2001/07/31 14:52:18 1.2 @@ -26,7 +26,7 @@ * This class represents a read-only SVG CSS value. * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: SVGCSSReadOnlyValue.java,v 1.1 2001/02/12 06:18:25 hillion Exp $ + * @version $Id: SVGCSSReadOnlyValue.java,v 1.2 2001/07/31 14:52:18 hillion Exp $ */ public class SVGCSSReadOnlyValue extends CSSOMReadOnlyValue @@ -111,6 +111,18 @@ * org.w3c.dom.svg.SVGColor#setRGBColorICCColor(String,String)}. */ public void setRGBColorICCColor(String rgbColor, String iccColor) + throws SVGException { + throw CSSDOMExceptionFactory.createDOMException + (DOMException.INVALID_ACCESS_ERR, + "readonly.value", + new Object[] {}); + } + + /** + * <b>DOM</b>: Implements {@link + * org.w3c.dom.svg.SVGColor#setColor(short,String,String)}. + */ + public void setColor(short colorType, String rgbColor, String iccColor) throws SVGException { throw CSSDOMExceptionFactory.createDOMException (DOMException.INVALID_ACCESS_ERR, 1.2 +10 -1 xml-batik/sources/org/apache/batik/css/svg/SVGCSSValue.java Index: SVGCSSValue.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/css/svg/SVGCSSValue.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGCSSValue.java 2001/02/12 06:18:25 1.1 +++ SVGCSSValue.java 2001/07/31 14:52:18 1.2 @@ -27,7 +27,7 @@ * This class represents a SVG CSS value. * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: SVGCSSValue.java,v 1.1 2001/02/12 06:18:25 hillion Exp $ + * @version $Id: SVGCSSValue.java,v 1.2 2001/07/31 14:52:18 hillion Exp $ */ public class SVGCSSValue extends CSSOMValue @@ -110,6 +110,15 @@ * org.w3c.dom.svg.SVGColor#setRGBColorICCColor(String,String)}. */ public void setRGBColorICCColor(String rgbColor, String iccColor) + throws SVGException { + throw new DOMException(DOMException.NOT_SUPPORTED_ERR, ""); + } + + /** + * <b>DOM</b>: Implements {@link + * org.w3c.dom.svg.SVGColor#setColor(short,String,String)}. + */ + public void setColor(short colorType, String rgbColor, String iccColor) throws SVGException { throw new DOMException(DOMException.NOT_SUPPORTED_ERR, ""); } 1.6 +13 -1 xml-batik/sources/org/apache/batik/dom/svg/SVGOMElement.java Index: SVGOMElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMElement.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- SVGOMElement.java 2001/02/14 16:33:53 1.5 +++ SVGOMElement.java 2001/07/31 14:52:18 1.6 @@ -42,7 +42,7 @@ * This class implements the {@link org.w3c.dom.svg.SVGElement} interface. * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: SVGOMElement.java,v 1.5 2001/02/14 16:33:53 hillion Exp $ + * @version $Id: SVGOMElement.java,v 1.6 2001/07/31 14:52:18 hillion Exp $ */ public abstract class SVGOMElement extends AbstractElement @@ -194,6 +194,18 @@ prefix }); } this.prefix = prefix; + } + + /** + * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGElement#getXMLbase()}. + */ + public String getXMLbase() { + return null; + } + /** + * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGElement#setXMLbase(String)}. + */ + public void setXMLbase(String xmlbase) throws DOMException { } // ExtendedNode ////////////////////////////////////////////////// 1.5 +9 -9 xml-batik/sources/org/apache/batik/dom/svg/SVGOMFEOffsetElement.java Index: SVGOMFEOffsetElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMFEOffsetElement.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- SVGOMFEOffsetElement.java 2000/12/28 09:37:23 1.4 +++ SVGOMFEOffsetElement.java 2001/07/31 14:52:18 1.5 @@ -23,7 +23,7 @@ * This class implements {@link org.w3c.dom.svg.SVGFEOffsetElement}. * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: SVGOMFEOffsetElement.java,v 1.4 2000/12/28 09:37:23 hillion Exp $ + * @version $Id: SVGOMFEOffsetElement.java,v 1.5 2001/07/31 14:52:18 hillion Exp $ */ public class SVGOMFEOffsetElement extends SVGOMFilterPrimitiveStandardAttributes @@ -84,11 +84,11 @@ * <b>DOM</b>: Implements {@link * org.w3c.dom.svg.SVGFEOffsetElement#getDx()}. */ - public SVGAnimatedLength getDx() { - SVGAnimatedLength result; + public SVGAnimatedNumber getDx() { + SVGAnimatedNumber result; if (dxReference == null || - (result = (SVGAnimatedLength)dxReference.get()) == null) { - result = new SVGOMAnimatedLength(this, null, SVG_DX_ATTRIBUTE, null); + (result = (SVGAnimatedNumber)dxReference.get()) == null) { + result = new SVGOMAnimatedNumber(this, null, SVG_DX_ATTRIBUTE, null); dxReference = new WeakReference(result); } return result; @@ -98,11 +98,11 @@ * <b>DOM</b>: Implements {@link * org.w3c.dom.svg.SVGFEOffsetElement#getDy()}. */ - public SVGAnimatedLength getDy() { - SVGAnimatedLength result; + public SVGAnimatedNumber getDy() { + SVGAnimatedNumber result; if (dyReference == null || - (result = (SVGAnimatedLength)dyReference.get()) == null) { - result = new SVGOMAnimatedLength(this, null, SVG_DY_ATTRIBUTE, null); + (result = (SVGAnimatedNumber)dyReference.get()) == null) { + result = new SVGOMAnimatedNumber(this, null, SVG_DY_ATTRIBUTE, null); dyReference = new WeakReference(result); } return result; 1.5 +10 -2 xml-batik/sources/org/apache/batik/dom/svg/SVGOMMaskElement.java Index: SVGOMMaskElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMMaskElement.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- SVGOMMaskElement.java 2001/03/26 13:01:41 1.4 +++ SVGOMMaskElement.java 2001/07/31 14:52:18 1.5 @@ -23,7 +23,7 @@ * This class implements {@link org.w3c.dom.svg.SVGMaskElement}. * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: SVGOMMaskElement.java,v 1.4 2001/03/26 13:01:41 tkormann Exp $ + * @version $Id: SVGOMMaskElement.java,v 1.5 2001/07/31 14:52:18 hillion Exp $ */ public class SVGOMMaskElement extends SVGClippingMaskingElement @@ -104,7 +104,7 @@ /** * <b>DOM</b>: Implements {@link - * org.w3c.dom.svg.SVGGradientElement#getGradientUnits()}. + * org.w3c.dom.svg.SVGGradientElement#getMaskUnits()}. */ public SVGAnimatedEnumeration getMaskUnits() { SVGAnimatedEnumeration result; @@ -118,6 +118,14 @@ maskUnitsReference = new WeakReference(result); } return result; + } + + /** + * <b>DOM</b>: Implements {@link + * org.w3c.dom.svg.SVGPatternElement#getMaskContentUnits()}. + */ + public SVGAnimatedEnumeration getMaskContentUnits() { + throw new RuntimeException(" !!! TODO: SVGOMMaskElement.getPatternUnits()"); } /** 1.6 +9 -1 xml-batik/sources/org/apache/batik/dom/svg/SVGOMPatternElement.java Index: SVGOMPatternElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMPatternElement.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- SVGOMPatternElement.java 2001/02/05 10:56:02 1.5 +++ SVGOMPatternElement.java 2001/07/31 14:52:18 1.6 @@ -36,7 +36,7 @@ * This class implements {@link org.w3c.dom.svg.SVGStopElement}. * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: SVGOMPatternElement.java,v 1.5 2001/02/05 10:56:02 tkormann Exp $ + * @version $Id: SVGOMPatternElement.java,v 1.6 2001/07/31 14:52:18 hillion Exp $ */ public class SVGOMPatternElement extends SVGOMElement @@ -101,6 +101,14 @@ * org.w3c.dom.svg.SVGPatternElement#getPatternUnits()}. */ public SVGAnimatedEnumeration getPatternUnits() { + throw new RuntimeException(" !!! TODO: SVGOMPatternElement.getPatternUnits()"); + } + + /** + * <b>DOM</b>: Implements {@link + * org.w3c.dom.svg.SVGPatternElement#getPatternContentUnits()}. + */ + public SVGAnimatedEnumeration getPatternContentUnits() { throw new RuntimeException(" !!! TODO: SVGOMPatternElement.getPatternUnits()"); } 1.11 +2 -2 xml-batik/sources/org/apache/batik/dom/svg/SVGOMSVGElement.java Index: SVGOMSVGElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMSVGElement.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- SVGOMSVGElement.java 2001/05/14 16:44:39 1.10 +++ SVGOMSVGElement.java 2001/07/31 14:52:18 1.11 @@ -54,7 +54,7 @@ * This class implements {@link org.w3c.dom.svg.SVGSVGElement}. * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: SVGOMSVGElement.java,v 1.10 2001/05/14 16:44:39 tkormann Exp $ + * @version $Id: SVGOMSVGElement.java,v 1.11 2001/07/31 14:52:18 hillion Exp $ */ public class SVGOMSVGElement extends SVGOMElement @@ -319,7 +319,7 @@ public boolean checkEnclosure ( SVGElement element, SVGRect rect ) { throw new Error(); } - public void deSelectAll ( ) { + public void deselectAll ( ) { throw new Error(); } 1.5 +2 -28 xml-batik/sources/org/apache/batik/dom/svg/SVGOMTextElement.java Index: SVGOMTextElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMTextElement.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- SVGOMTextElement.java 2000/12/28 09:37:27 1.4 +++ SVGOMTextElement.java 2001/07/31 14:52:18 1.5 @@ -25,10 +25,10 @@ * This class implements {@link org.w3c.dom.svg.SVGTextElement}. * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: SVGOMTextElement.java,v 1.4 2000/12/28 09:37:27 hillion Exp $ + * @version $Id: SVGOMTextElement.java,v 1.5 2001/07/31 14:52:18 hillion Exp $ */ public class SVGOMTextElement - extends SVGOMTextContentElement + extends SVGOMTextPositioningElement implements SVGTextElement { /** @@ -62,32 +62,6 @@ public String getLocalName() { return SVG_TEXT_TAG; } - - /** - * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGTextElement#getX()}. - */ - public SVGAnimatedLength getX() { - SVGAnimatedLength result; - if (xReference == null || - (result = (SVGAnimatedLength)xReference.get()) == null) { - result = new SVGOMAnimatedLength(this, null, SVG_X_ATTRIBUTE, null); - xReference = new WeakReference(result); - } - return result; - } - - /** - * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGTextElement#getY()}. - */ - public SVGAnimatedLength getY() { - SVGAnimatedLength result; - if (yReference == null || - (result = (SVGAnimatedLength)yReference.get()) == null) { - result = new SVGOMAnimatedLength(this, null, SVG_Y_ATTRIBUTE, null); - yReference = new WeakReference(result); - } - return result; - } // SVGTransformable support ///////////////////////////////////////////// 1.23 +4 -2 xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java Index: JSVGComponent.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- JSVGComponent.java 2001/07/25 15:15:51 1.22 +++ JSVGComponent.java 2001/07/31 14:52:18 1.23 @@ -38,6 +38,8 @@ import org.apache.batik.bridge.ViewBox; import org.apache.batik.bridge.UserAgent; +import org.apache.batik.dom.util.XLinkSupport; + import org.apache.batik.dom.svg.SVGDOMImplementation; import org.apache.batik.dom.svg.SVGOMDocument; @@ -150,7 +152,7 @@ * building/rendering a document (invalid XML file, missing attributes...).</p> * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: JSVGComponent.java,v 1.22 2001/07/25 15:15:51 tkormann Exp $ + * @version $Id: JSVGComponent.java,v 1.23 2001/07/31 14:52:18 hillion Exp $ */ public class JSVGComponent extends JGVTComponent { @@ -822,7 +824,7 @@ * @param elt The activated link element. */ public void openLink(SVGAElement elt) { - String show = elt.getXlinkShow(); + String show = XLinkSupport.getXLinkShow(elt); String href = elt.getHref().getBaseVal(); if (show.equals("new")) { 1.3 +4 -1 xml-batik/sources/org/w3c/dom/svg/SVGColor.java Index: SVGColor.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGColor.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- SVGColor.java 2000/11/03 05:40:19 1.2 +++ SVGColor.java 2001/07/31 14:52:18 1.3 @@ -10,13 +10,16 @@ public static final short SVG_COLORTYPE_UNKNOWN = 0; public static final short SVG_COLORTYPE_RGBCOLOR = 1; public static final short SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; + public static final short SVG_COLORTYPE_CURRENTCOLOR = 3; public short getColorType( ); - public RGBColor getRGBColor( ); + public RGBColor getRGBColor( ); public SVGICCColor getICCColor( ); public void setRGBColor ( String rgbColor ) throws SVGException; public void setRGBColorICCColor ( String rgbColor, String iccColor ) + throws SVGException; + public void setColor ( short colorType, String rgbColor, String iccColor ) throws SVGException; } 1.2 +3 -0 xml-batik/sources/org/w3c/dom/svg/SVGElement.java Index: SVGElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGElement.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGElement.java 2000/10/10 18:43:21 1.1 +++ SVGElement.java 2001/07/31 14:52:18 1.2 @@ -9,6 +9,9 @@ public String getId( ); public void setId( String id ) throws DOMException; + public String getXMLbase( ); + public void setXMLbase( String xmlbase ) + throws DOMException; public SVGSVGElement getOwnerSVGElement( ); public SVGElement getViewportElement( ); } 1.3 +1 -1 xml-batik/sources/org/w3c/dom/svg/SVGElementInstanceList.java Index: SVGElementInstanceList.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGElementInstanceList.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- SVGElementInstanceList.java 2000/11/03 05:40:20 1.2 +++ SVGElementInstanceList.java 2001/07/31 14:52:18 1.3 @@ -2,7 +2,7 @@ package org.w3c.dom.svg; public interface SVGElementInstanceList { - public SVGElementInstance getLength( ); + public int getLength( ); public SVGElementInstance item ( int index ); } 1.2 +0 -1 xml-batik/sources/org/w3c/dom/svg/SVGFEImageElement.java Index: SVGFEImageElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGFEImageElement.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGFEImageElement.java 2000/10/10 18:43:26 1.1 +++ SVGFEImageElement.java 2001/07/31 14:52:18 1.2 @@ -7,6 +7,5 @@ SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, - SVGTransformable, SVGFilterPrimitiveStandardAttributes { } 1.2 +2 -2 xml-batik/sources/org/w3c/dom/svg/SVGFEOffsetElement.java Index: SVGFEOffsetElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGFEOffsetElement.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGFEOffsetElement.java 2000/10/10 18:43:27 1.1 +++ SVGFEOffsetElement.java 2001/07/31 14:52:18 1.2 @@ -5,6 +5,6 @@ SVGElement, SVGFilterPrimitiveStandardAttributes { public SVGAnimatedString getIn1( ); - public SVGAnimatedLength getDx( ); - public SVGAnimatedLength getDy( ); + public SVGAnimatedNumber getDx( ); + public SVGAnimatedNumber getDy( ); } 1.2 +1 -0 xml-batik/sources/org/w3c/dom/svg/SVGGradientElement.java Index: SVGGradientElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGGradientElement.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGGradientElement.java 2000/10/10 18:43:32 1.1 +++ SVGGradientElement.java 2001/07/31 14:52:18 1.2 @@ -5,6 +5,7 @@ SVGElement, SVGURIReference, SVGExternalResourcesRequired, + SVGStylable, SVGUnitTypes { // Spread Method Types public static final short SVG_SPREADMETHOD_UNKNOWN = 0; 1.2 +1 -1 xml-batik/sources/org/w3c/dom/svg/SVGMaskElement.java Index: SVGMaskElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGMaskElement.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGMaskElement.java 2000/10/10 18:43:35 1.1 +++ SVGMaskElement.java 2001/07/31 14:52:18 1.2 @@ -7,9 +7,9 @@ SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, - SVGTransformable, SVGUnitTypes { public SVGAnimatedEnumeration getMaskUnits( ); + public SVGAnimatedEnumeration getMaskContentUnits( ); public SVGAnimatedLength getX( ); public SVGAnimatedLength getY( ); public SVGAnimatedLength getWidth( ); 1.3 +1 -0 xml-batik/sources/org/w3c/dom/svg/SVGPaint.java Index: SVGPaint.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGPaint.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- SVGPaint.java 2000/11/03 05:40:20 1.2 +++ SVGPaint.java 2001/07/31 14:52:18 1.3 @@ -15,6 +15,7 @@ public static final short SVG_PAINTTYPE_URI_CURRENTCOLOR = 104; public static final short SVG_PAINTTYPE_URI_RGBCOLOR = 105; public static final short SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106; + public static final short SVG_PAINTTYPE_URI = 107; public short getPaintType( ); public String getUri( ); 1.2 +1 -0 xml-batik/sources/org/w3c/dom/svg/SVGPatternElement.java Index: SVGPatternElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGPatternElement.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGPatternElement.java 2000/10/10 18:43:46 1.1 +++ SVGPatternElement.java 2001/07/31 14:52:18 1.2 @@ -11,6 +11,7 @@ SVGFitToViewBox, SVGUnitTypes { public SVGAnimatedEnumeration getPatternUnits( ); + public SVGAnimatedEnumeration getPatternContentUnits( ); public SVGAnimatedTransformList getPatternTransform( ); public SVGAnimatedLength getX( ); public SVGAnimatedLength getY( ); 1.3 +1 -2 xml-batik/sources/org/w3c/dom/svg/SVGSVGElement.java Index: SVGSVGElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGSVGElement.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- SVGSVGElement.java 2000/11/03 05:40:20 1.2 +++ SVGSVGElement.java 2001/07/31 14:52:18 1.3 @@ -61,7 +61,7 @@ public NodeList getEnclosureList ( SVGRect rect, SVGElement referenceElement ); public boolean checkIntersection ( SVGElement element, SVGRect rect ); public boolean checkEnclosure ( SVGElement element, SVGRect rect ); - public void deSelectAll ( ); + public void deselectAll ( ); public SVGNumber createSVGNumber ( ); public SVGLength createSVGLength ( ); public SVGAngle createSVGAngle ( ); @@ -70,6 +70,5 @@ public SVGRect createSVGRect ( ); public SVGTransform createSVGTransform ( ); public SVGTransform createSVGTransformFromMatrix ( SVGMatrix matrix ); - public String createSVGString ( ); public Element getElementById ( String elementId ); } 1.2 +1 -3 xml-batik/sources/org/w3c/dom/svg/SVGTextElement.java Index: SVGTextElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGTextElement.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGTextElement.java 2000/10/10 18:43:51 1.1 +++ SVGTextElement.java 2001/07/31 14:52:18 1.2 @@ -2,8 +2,6 @@ package org.w3c.dom.svg; public interface SVGTextElement extends - SVGTextContentElement, + SVGTextPositioningElement, SVGTransformable { - public SVGAnimatedLength getX( ); - public SVGAnimatedLength getY( ); } 1.2 +0 -19 xml-batik/sources/org/w3c/dom/svg/SVGURIReference.java Index: SVGURIReference.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGURIReference.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGURIReference.java 2000/10/10 18:43:53 1.1 +++ SVGURIReference.java 2001/07/31 14:52:18 1.2 @@ -1,25 +1,6 @@ package org.w3c.dom.svg; -import org.w3c.dom.DOMException; public interface SVGURIReference { - public String getXlinkType( ); - public void setXlinkType( String xlinkType ) - throws DOMException; - public String getXlinkRole( ); - public void setXlinkRole( String xlinkRole ) - throws DOMException; - public String getXlinkArcRole( ); - public void setXlinkArcRole( String xlinkArcRole ) - throws DOMException; - public String getXlinkTitle( ); - public void setXlinkTitle( String xlinkTitle ) - throws DOMException; - public String getXlinkShow( ); - public void setXlinkShow( String xlinkShow ) - throws DOMException; - public String getXlinkActuate( ); - public void setXlinkActuate( String xlinkActuate ) - throws DOMException; public SVGAnimatedString getHref( ); } 1.3 +1 -1 xml-batik/sources/org/w3c/dom/svg/SVGViewElement.java Index: SVGViewElement.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGViewElement.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- SVGViewElement.java 2000/11/03 05:40:21 1.2 +++ SVGViewElement.java 2001/07/31 14:52:18 1.3 @@ -6,5 +6,5 @@ SVGExternalResourcesRequired, SVGFitToViewBox, SVGZoomAndPan { - public SVGElement getViewTarget( ); + public SVGStringList getViewTarget( ); } 1.2 +0 -1 xml-batik/sources/org/w3c/dom/svg/SVGZoomAndPan.java Index: SVGZoomAndPan.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/w3c/dom/svg/SVGZoomAndPan.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGZoomAndPan.java 2000/10/10 18:43:54 1.1 +++ SVGZoomAndPan.java 2001/07/31 14:52:18 1.2 @@ -8,7 +8,6 @@ public static final short SVG_ZOOMANDPAN_UNKNOWN = 0; public static final short SVG_ZOOMANDPAN_DISABLE = 1; public static final short SVG_ZOOMANDPAN_MAGNIFY = 2; - public static final short SVG_ZOOMANDPAN_ZOOM = 3; public short getZoomAndPan( ); public void setZoomAndPan( short zoomAndPan ) 1.1 xml-batik/sources/org/w3c/dom/svg/SVGMPathElement.java Index: SVGMPathElement.java =================================================================== package org.w3c.dom.svg; public interface SVGMPathElement extends SVGElement, SVGURIReference, SVGExternalResourcesRequired { } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]