[Htmlparser-cvs] htmlparser/src/org/htmlparser/lexer/nodes TagNode.java,1.10,1.11
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-09-23 03:41:41
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer/nodes In directory sc8-pr-cvs1:/tmp/cvs-serv11902/src/org/htmlparser/lexer/nodes Modified Files: TagNode.java Log Message: Distribution cleanup. - Removed duplicate documentation files from src.zip. - Jars are now built in lib, and stay there, rather than being deleting in the clean task. *** NOTE *** No more release directory. - Added checkstyle-all-3.1.jar to the lib directory, so others can run it too. - Moved executable scripts from resources to a new bin directory so they can be executed in a development environment. - Moved fit.jar from resources to the lib directory. This left the resources directory empty, but... - Moved cvs2cl and checkstyle files into the resources directory. - Eliminated staging of source files and release files just to construct a zip. These are now aggregated by their respective zip tasks. - Changed name of changeLog task to changelog. - Fixed a few javadoc warnings. - Removed the spurious 'run' from the front of all the names of the DOS batch files. The only files that aren't shipped now are the results, specs and .ssh directory, (whatever they are), and the development environment is identical to the unpacked zips except for maybe the built directories (distribution, javadocs). Index: TagNode.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexer/nodes/TagNode.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** TagNode.java 22 Sep 2003 02:39:59 -0000 1.10 --- TagNode.java 23 Sep 2003 03:41:33 -0000 1.11 *************** *** 122,131 **** /** ! * Create a tag with the location and attributes provided ! * @param page The page this tag was read from. ! * @param start The starting offset of this node within the page. ! * @param end The ending offset of this node within the page. ! * @param attributes The list of attributes that were parsed in this tag. ! * @see Attribute */ public TagNode () --- 122,126 ---- /** ! * Create an empty tag. */ public TagNode () |