Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser
In directory sc8-pr-cvs1:/tmp/cvs-serv22446/org/htmlparser
Modified Files:
Parser.java
Log Message:
Moved pending bugs to the 'feature request' tracker,
and made the failing unit tests execution conditional on the Parser version being >= 1.4.
Index: Parser.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Parser.java,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** Parser.java 5 May 2003 03:12:21 -0000 1.35
--- Parser.java 11 May 2003 20:42:30 -0000 1.36
***************
*** 385,388 ****
--- 385,400 ----
/**
+ * Return the version string of this parser.
+ * @return A string of the form:
+ * <pre>
+ * "[floating point number] [description]"
+ * </pre>
+ */
+ public String getVersion ()
+ {
+ return (VERSION_STRING);
+ }
+
+ /**
* Set the connection for this parser.
* This method sets four of the fields in the parser object;
|