nsochele 2003/03/14 06:19:35 Modified: sources/org/apache/batik/dom/svg SVGTextPositioningElementSupport.java SVGOMLength.java AbstractSVGPathSegList.java AbstractSVGMatrix.java AbstractSVGLengthList.java AbstractSVGLength.java Log: javadoc warning fixes Revision Changes Path 1.2 +5 -5 xml-batik/sources/org/apache/batik/dom/svg/SVGTextPositioningElementSupport.java Index: SVGTextPositioningElementSupport.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGTextPositioningElementSupport.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SVGTextPositioningElementSupport.java 4 Mar 2003 18:22:20 -0000 1.1 +++ SVGTextPositioningElementSupport.java 14 Mar 2003 14:19:34 -0000 1.2 @@ -33,7 +33,7 @@ /** * <b>DOM</b>: Implements [EMAIL PROTECTED] - * org.w3c.dom.svg.SVGTextPositionningElement#getX()}. + * org.w3c.dom.svg.SVGTextPositioningElement#getX()}. */ public static SVGAnimatedLengthList getX(AbstractElement e){ @@ -53,7 +53,7 @@ /** * <b>DOM</b>: Implements [EMAIL PROTECTED] - * org.w3c.dom.svg.SVGTextPositionningElement#getY()}. + * org.w3c.dom.svg.SVGTextPositioningElement#getY()}. */ public static SVGAnimatedLengthList getY(AbstractElement e){ @@ -73,7 +73,7 @@ /** * <b>DOM</b>: Implements [EMAIL PROTECTED] - * org.w3c.dom.svg.SVGTextPositionningElement#getDx()}. + * org.w3c.dom.svg.SVGTextPositioningElement#getDx()}. */ public static SVGAnimatedLengthList getDx(AbstractElement e){ @@ -93,7 +93,7 @@ /** * <b>DOM</b>: Implements [EMAIL PROTECTED] - * org.w3c.dom.svg.SVGTextPositionningElement#getDy()}. + * org.w3c.dom.svg.SVGTextPositioningElement#getDy()}. */ public static SVGAnimatedLengthList getDy(AbstractElement e){ 1.10 +2 -2 xml-batik/sources/org/apache/batik/dom/svg/SVGOMLength.java Index: SVGOMLength.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMLength.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- SVGOMLength.java 4 Mar 2003 18:22:20 -0000 1.9 +++ SVGOMLength.java 14 Mar 2003 14:19:34 -0000 1.10 @@ -15,7 +15,7 @@ * attribute in the Document. It is used * by the root element to return a default SVGLength. * - * @see org.w3c.dom.svg.SVGElement#createSVGLength() + * @see org.w3c.dom.svg.SVGSVGElement#createSVGLength() * * @author [EMAIL PROTECTED] * @version $Id$ 1.2 +22 -22 xml-batik/sources/org/apache/batik/dom/svg/AbstractSVGPathSegList.java Index: AbstractSVGPathSegList.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/AbstractSVGPathSegList.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- AbstractSVGPathSegList.java 4 Mar 2003 18:22:20 -0000 1.1 +++ AbstractSVGPathSegList.java 14 Mar 2003 14:19:34 -0000 1.2 @@ -891,21 +891,21 @@ this.listHandler = listHandler; } /** - * Implements [EMAIL PROTECTED] PathHandler#startPath()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#startPath()}. */ public void startPath() throws ParseException { listHandler.startList(); } /** - * Implements [EMAIL PROTECTED] PathHandler#endPath()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#endPath()}. */ public void endPath() throws ParseException { listHandler.endList(); } /** - * Implements [EMAIL PROTECTED] PathHandler#movetoRel(float,float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#movetoRel(float,float)}. */ public void movetoRel(float x, float y) throws ParseException { listHandler.item(new SVGPathSegMovetoLinetoItem @@ -914,7 +914,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#movetoAbs(float,float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#movetoAbs(float,float)}. */ public void movetoAbs(float x, float y) throws ParseException { listHandler.item(new SVGPathSegMovetoLinetoItem @@ -923,7 +923,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#closePath()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#closePath()}. */ public void closePath() throws ParseException { listHandler.item(new SVGPathSegItem @@ -932,7 +932,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#linetoRel(float,float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#linetoRel(float,float)}. */ public void linetoRel(float x, float y) throws ParseException { listHandler.item(new SVGPathSegMovetoLinetoItem @@ -941,7 +941,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#linetoAbs(float,float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#linetoAbs(float,float)}. */ public void linetoAbs(float x, float y) throws ParseException { listHandler.item(new SVGPathSegMovetoLinetoItem @@ -950,7 +950,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#linetoHorizontalRel(float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#linetoHorizontalRel(float)}. */ public void linetoHorizontalRel(float x) throws ParseException { listHandler.item(new SVGPathSegLinetoHorizontalItem @@ -959,7 +959,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#linetoHorizontalAbs(float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#linetoHorizontalAbs(float)}. */ public void linetoHorizontalAbs(float x) throws ParseException { listHandler.item(new SVGPathSegLinetoHorizontalItem @@ -968,7 +968,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#linetoVerticalRel(float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#linetoVerticalRel(float)}. */ public void linetoVerticalRel(float y) throws ParseException { listHandler.item(new SVGPathSegLinetoVerticalItem @@ -977,7 +977,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#linetoVerticalAbs(float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#linetoVerticalAbs(float)}. */ public void linetoVerticalAbs(float y) throws ParseException { listHandler.item(new SVGPathSegLinetoVerticalItem @@ -987,7 +987,7 @@ /** * Implements [EMAIL PROTECTED] - * PathHandler#curvetoCubicRel(float,float,float,float,float,float)}. + * org.apache.batik.parser.PathHandler#curvetoCubicRel(float,float,float,float,float,float)}. */ public void curvetoCubicRel(float x1, float y1, float x2, float y2, @@ -999,7 +999,7 @@ /** * Implements [EMAIL PROTECTED] - * PathHandler#curvetoCubicAbs(float,float,float,float,float,float)}. + * org.apache.batik.parser.PathHandler#curvetoCubicAbs(float,float,float,float,float,float)}. */ public void curvetoCubicAbs(float x1, float y1, float x2, float y2, @@ -1011,7 +1011,7 @@ /** * Implements [EMAIL PROTECTED] - * PathHandler#curvetoCubicSmoothRel(float,float,float,float)}. + * org.apache.batik.parser.PathHandler#curvetoCubicSmoothRel(float,float,float,float)}. */ public void curvetoCubicSmoothRel(float x2, float y2, float x, float y) throws ParseException { @@ -1022,7 +1022,7 @@ /** * Implements [EMAIL PROTECTED] - * PathHandler#curvetoCubicSmoothAbs(float,float,float,float)}. + * org.apache.batik.parser.PathHandler#curvetoCubicSmoothAbs(float,float,float,float)}. */ public void curvetoCubicSmoothAbs(float x2, float y2, float x, float y) throws ParseException { @@ -1033,7 +1033,7 @@ /** * Implements [EMAIL PROTECTED] - * PathHandler#curvetoQuadraticRel(float,float,float,float)}. + * org.apache.batik.parser.PathHandler#curvetoQuadraticRel(float,float,float,float)}. */ public void curvetoQuadraticRel(float x1, float y1, float x, float y) throws ParseException { @@ -1044,7 +1044,7 @@ /** * Implements [EMAIL PROTECTED] - * PathHandler#curvetoQuadraticAbs(float,float,float,float)}. + * org.apache.batik.parser.PathHandler#curvetoQuadraticAbs(float,float,float,float)}. */ public void curvetoQuadraticAbs(float x1, float y1, float x, float y) throws ParseException { @@ -1054,7 +1054,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#curvetoQuadraticSmoothRel(float,float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#curvetoQuadraticSmoothRel(float,float)}. */ public void curvetoQuadraticSmoothRel(float x, float y) throws ParseException { @@ -1064,7 +1064,7 @@ } /** - * Implements [EMAIL PROTECTED] PathHandler#curvetoQuadraticSmoothAbs(float,float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.PathHandler#curvetoQuadraticSmoothAbs(float,float)}. */ public void curvetoQuadraticSmoothAbs(float x, float y) throws ParseException { @@ -1075,7 +1075,7 @@ /** * Implements [EMAIL PROTECTED] - * PathHandler#arcRel(float,float,float,boolean,boolean,float,float)}. + * org.apache.batik.parser.PathHandler#arcRel(float,float,float,boolean,boolean,float,float)}. */ public void arcRel(float rx, float ry, float xAxisRotation, @@ -1088,7 +1088,7 @@ /** * Implements [EMAIL PROTECTED] - * PathHandler#arcAbs(float,float,float,boolean,boolean,float,float)}. + * org.apache.batik.parser.PathHandler#arcAbs(float,float,float,boolean,boolean,float,float)}. */ public void arcAbs(float rx, float ry, float xAxisRotation, 1.3 +8 -8 xml-batik/sources/org/apache/batik/dom/svg/AbstractSVGMatrix.java Index: AbstractSVGMatrix.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/AbstractSVGMatrix.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- AbstractSVGMatrix.java 24 Apr 2002 13:01:26 -0000 1.2 +++ AbstractSVGMatrix.java 14 Mar 2003 14:19:34 -0000 1.3 @@ -50,7 +50,7 @@ } /** - * Implements [EMAIL PROTECTED] SVGMatrix#getA(float)}. + * Implements [EMAIL PROTECTED] SVGMatrix#setA(float)}. */ public void setA(float a) throws DOMException { AffineTransform at = getAffineTransform(); @@ -70,7 +70,7 @@ } /** - * Implements [EMAIL PROTECTED] SVGMatrix#getB(float)}. + * Implements [EMAIL PROTECTED] SVGMatrix#setB(float)}. */ public void setB(float b) throws DOMException { AffineTransform at = getAffineTransform(); @@ -90,7 +90,7 @@ } /** - * Implements [EMAIL PROTECTED] SVGMatrix#getC(float)}. + * Implements [EMAIL PROTECTED] SVGMatrix#setC(float)}. */ public void setC(float c) throws DOMException { AffineTransform at = getAffineTransform(); @@ -110,7 +110,7 @@ } /** - * Implements [EMAIL PROTECTED] SVGMatrix#getD(float)}. + * Implements [EMAIL PROTECTED] SVGMatrix#setD(float)}. */ public void setD(float d) throws DOMException { AffineTransform at = getAffineTransform(); @@ -130,7 +130,7 @@ } /** - * Implements [EMAIL PROTECTED] SVGMatrix#getE(float)}. + * Implements [EMAIL PROTECTED] SVGMatrix#setE(float)}. */ public void setE(float e) throws DOMException { AffineTransform at = getAffineTransform(); @@ -150,7 +150,7 @@ } /** - * Implements [EMAIL PROTECTED] SVGMatrix#getF(float)}. + * Implements [EMAIL PROTECTED] SVGMatrix#setF(float)}. */ public void setF(float f) throws DOMException { AffineTransform at = getAffineTransform(); @@ -267,7 +267,7 @@ } /** - * Implements [EMAIL PROTECTED] SVGMatrix#skewY()}. + * Implements [EMAIL PROTECTED] SVGMatrix#skewY(float)}. */ public SVGMatrix skewY(float angle) { AffineTransform tr = (AffineTransform)getAffineTransform().clone(); 1.2 +13 -13 xml-batik/sources/org/apache/batik/dom/svg/AbstractSVGLengthList.java Index: AbstractSVGLengthList.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/AbstractSVGLengthList.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- AbstractSVGLengthList.java 4 Mar 2003 18:22:20 -0000 1.1 +++ AbstractSVGLengthList.java 14 Mar 2003 14:19:34 -0000 1.2 @@ -251,7 +251,7 @@ listHandler.startList(); } /** - * Implements [EMAIL PROTECTED] LengthHandler#startLength()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#startLength()}. */ public void startLength() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_NUMBER; @@ -259,77 +259,77 @@ } /** - * Implements [EMAIL PROTECTED] LengthHandler#lengthValue(float)}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#lengthValue(float)}. */ public void lengthValue(float v) throws ParseException { currentValue = v; } /** - * Implements [EMAIL PROTECTED] LengthHandler#em()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#em()}. */ public void em() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_EMS; } /** - * Implements [EMAIL PROTECTED] LengthHandler#ex()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#ex()}. */ public void ex() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_EXS; } /** - * Implements [EMAIL PROTECTED] LengthHandler#in()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#in()}. */ public void in() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_IN; } /** - * Implements [EMAIL PROTECTED] LengthHandler#cm()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#cm()}. */ public void cm() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_CM; } /** - * Implements [EMAIL PROTECTED] LengthHandler#mm()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#mm()}. */ public void mm() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_MM; } /** - * Implements [EMAIL PROTECTED] LengthHandler#pc()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#pc()}. */ public void pc() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_PC; } /** - * Implements [EMAIL PROTECTED] LengthHandler#pt()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#pt()}. */ public void pt() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_EMS; } /** - * Implements [EMAIL PROTECTED] LengthHandler#px()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#px()}. */ public void px() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_PX; } /** - * Implements [EMAIL PROTECTED] LengthHandler#percentage()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#percentage()}. */ public void percentage() throws ParseException { currentType = SVGLength.SVG_LENGTHTYPE_PERCENTAGE; } /** - * Implements [EMAIL PROTECTED] LengthHandler#endLength()}. + * Implements [EMAIL PROTECTED] org.apache.batik.parser.LengthHandler#endLength()}. */ public void endLength() throws ParseException { listHandler.item(new SVGLengthItem(currentType,currentValue,direction)); 1.2 +2 -2 xml-batik/sources/org/apache/batik/dom/svg/AbstractSVGLength.java Index: AbstractSVGLength.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/AbstractSVGLength.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- AbstractSVGLength.java 4 Mar 2003 18:22:20 -0000 1.1 +++ AbstractSVGLength.java 14 Mar 2003 14:19:34 -0000 1.2 @@ -247,7 +247,7 @@ /** * Returns the size of a px CSS unit in millimeters. * This will be removed after next release. - * @see #getPixelUnitToMillimeter(); + * @see #getPixelUnitToMillimeter() */ public float getPixelToMM() { return getPixelUnitToMillimeter();
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]