[Htmlparser-cvs] htmlparser/src/org/htmlparser Attribute.java,1.3,1.4 Parser.java,1.100,1.101
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2005-02-13 22:45:59
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1683/src/org/htmlparser Modified Files: Attribute.java Parser.java Log Message: Update version to 1.5-20050213 Includes javadoc fixes and unit test regression fixes. Index: Attribute.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Attribute.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Attribute.java 31 Jul 2004 16:42:35 -0000 1.3 --- Attribute.java 13 Feb 2005 22:45:46 -0000 1.4 *************** *** 494,499 **** * The part after the equals sign, or the text if it's just a whitepace * 'attribute'. This includes the quotes around the value if any. ! * @return The value, or <code>null</code> if it's a stand-alone attribute, ! * or the text if it's just a whitepace 'attribute'. * @see #getRawValue() */ --- 494,498 ---- * The part after the equals sign, or the text if it's just a whitepace * 'attribute'. This includes the quotes around the value if any. ! * @param buffer The string buffer to append the attribute value to. * @see #getRawValue() */ Index: Parser.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Parser.java,v retrieving revision 1.100 retrieving revision 1.101 diff -C2 -d -r1.100 -r1.101 *** Parser.java 13 Feb 2005 20:36:01 -0000 1.100 --- Parser.java 13 Feb 2005 22:45:47 -0000 1.101 *************** *** 83,87 **** */ public final static String ! VERSION_DATE = "Jul 28, 2004" ; --- 83,87 ---- */ public final static String ! VERSION_DATE = "Feb 13, 2005" ; *************** *** 154,158 **** /** * Set the connection manager all Parsers use. ! * @return The connection manager. */ public static void setConnectionManager (ConnectionManager manager) --- 154,158 ---- /** * Set the connection manager all Parsers use. ! * @param manager The new connection manager. */ public static void setConnectionManager (ConnectionManager manager) *************** *** 423,428 **** /** ! * Get the current node factory. ! * @return The parser's node factory. */ public void setNodeFactory (NodeFactory factory) --- 423,428 ---- /** ! * Set the current node factory. ! * @param factory The new node factory for the parser. */ public void setNodeFactory (NodeFactory factory) |