[Htmlparser-cvs] htmlparser/src/org/htmlparser/lexer/nodes PageAttribute.java,1.5,1.6
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-12-08 13:14:02
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer/nodes In directory sc8-pr-cvs1:/tmp/cvs-serv763/lexer/nodes Modified Files: PageAttribute.java Log Message: Eliminate deprecation warnings. Clean up javadoc warnings. Index: PageAttribute.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer/nodes/PageAttribute.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PageAttribute.java 8 Dec 2003 01:31:51 -0000 1.5 --- PageAttribute.java 8 Dec 2003 13:13:59 -0000 1.6 *************** *** 149,153 **** * @param value The value of this attribute. * @exception IllegalArgumentException if the value contains other than ! * whitespace. To set a real value use {@link #Attribute(String,String)}. */ public PageAttribute (String value) --- 149,153 ---- * @param value The value of this attribute. * @exception IllegalArgumentException if the value contains other than ! * whitespace. To set a real value use {@link Attribute#Attribute(String)}. */ public PageAttribute (String value) *************** *** 447,451 **** /** * Set the ending position of the attribute name. ! * @param start The new offset into the page at which the name ends. */ public void setNameEndPosition (int end) --- 447,451 ---- /** * Set the ending position of the attribute name. ! * @param end The new offset into the page at which the name ends. */ public void setNameEndPosition (int end) *************** *** 487,491 **** /** * Set the ending position of the attribute value. ! * @param start The new offset into the page at which the value ends. */ public void setValueEndPosition (int end) --- 487,491 ---- /** * Set the ending position of the attribute value. ! * @param end The new offset into the page at which the value ends. */ public void setValueEndPosition (int end) |