Index: trunk/src/com/kitfox/svg/SVGElement.java
===================================================================
--- trunk/src/com/kitfox/svg/SVGElement.java	(revision 11525)
+++ trunk/src/com/kitfox/svg/SVGElement.java	(revision 14328)
@@ -156,4 +156,5 @@
 
     /**
+     * @param retVec
      * @return an ordered list of nodes from the root of the tree to this node
      */
@@ -212,4 +213,6 @@
      * Searches children for given element. If found, returns index of child.
      * Otherwise returns -1.
+     * @param child
+     * @return index of child
      */
     public int indexOfChild(SVGElement child)
@@ -221,8 +224,7 @@
      * Swaps 2 elements in children.
      *
-     * @i index of first
-     * @j index of second
-     *
-     * @return true if successful, false otherwise
+     * @param i index of first child
+     * @param j index of second child
+     * @throws com.kitfox.svg.SVGException
      */
     public void swapChildren(int i, int j) throws SVGException
@@ -246,4 +248,6 @@
      * @param helper - An object passed to all SVG elements involved in this
      * build process to aid in sharing information.
+     * @param parent
+     * @throws org.xml.sax.SAXException
      */
     public void loaderStartElement(SVGLoaderHelper helper, Attributes attrs, SVGElement parent) throws SAXException
@@ -317,4 +321,7 @@
      * Called after the start element but before the end element to indicate
      * each child tag that has been processed
+     * @param helper
+     * @param child
+     * @throws com.kitfox.svg.SVGElementException
      */
     public void loaderAddChild(SVGLoaderHelper helper, SVGElement child) throws SVGElementException
@@ -346,4 +353,6 @@
     /**
      * Called during load process to add text scanned within a tag
+     * @param helper
+     * @param text
      */
     public void loaderAddText(SVGLoaderHelper helper, String text)
@@ -354,4 +363,6 @@
      * Called to indicate that this tag and the tags it contains have been
      * completely processed, and that it should finish any load processes.
+     * @param helper
+     * @throws com.kitfox.svg.SVGParseException
      */
     public void loaderEndElement(SVGLoaderHelper helper) throws SVGParseException
@@ -370,4 +381,5 @@
      * Called by internal processes to rebuild the geometry of this node from
      * it's presentation attributes, style attributes and animated tracks.
+     * @throws com.kitfox.svg.SVGException
      */
     protected void build() throws SVGException
@@ -420,4 +432,5 @@
      * Hack to allow nodes to temporarily change their parents. The Use tag will
      * need this so it can alter the attributes that a particular node uses.
+     * @param context
      */
     protected void pushParentContext(SVGElement context)
@@ -465,4 +478,5 @@
      * style attribute, checks attributes of parents back to root until one
      * found.
+     * @return
      */
     public boolean getStyle(StyleAttribute attrib, boolean recursive) throws SVGException
@@ -523,4 +537,5 @@
 
     /**
+     * @param styName
      * @return the raw style value of this attribute. Does not take the
      * presentation value or animation into consideration. Used by animations to
@@ -536,5 +551,7 @@
      * Copies the presentation attribute into the passed one.
      *
+     * @param attrib
      * @return - True if attribute was read successfully
+     * @throws com.kitfox.svg.SVGException
      */
     public boolean getPres(StyleAttribute attrib) throws SVGException
@@ -558,4 +575,5 @@
 
     /**
+     * @param styName
      * @return the raw presentation value of this attribute. Ignores any
      * modifications applied by style attributes or animation. Used by
@@ -810,6 +828,8 @@
      * all attributes with track information.
      *
+     * @param curTime
      * @return - true if this node has changed state as a result of the time
      * update
+     * @throws com.kitfox.svg.SVGException
      */
     abstract public boolean updateTime(double curTime) throws SVGException;
