[Htmlparser-cvs] htmlparser/src/org/htmlparser/tags AppletTag.java,1.28,1.29
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-09-23 03:41:41
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags In directory sc8-pr-cvs1:/tmp/cvs-serv11902/src/org/htmlparser/tags Modified Files: AppletTag.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: AppletTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/AppletTag.java,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** AppletTag.java 22 Sep 2003 02:40:01 -0000 1.28 --- AppletTag.java 23 Sep 2003 03:41:33 -0000 1.29 *************** *** 149,153 **** /** * Set the <code>CODE<code> attribute. ! * @param The new applet class. */ public void setAppletClass (String newAppletClass) --- 149,153 ---- /** * Set the <code>CODE<code> attribute. ! * @param newAppletClass The new applet class. */ public void setAppletClass (String newAppletClass) *************** *** 158,162 **** /** * Set the enclosed <code>PARM<code> children. ! * @param The new parameters. */ public void setAppletParams (Hashtable newAppletParams) --- 158,162 ---- /** * Set the enclosed <code>PARM<code> children. ! * @param newAppletParams The new parameters. */ public void setAppletParams (Hashtable newAppletParams) *************** *** 200,204 **** /** * Set the <code>ARCHIVE<code> attribute. ! * @param The new archive file. */ public void setArchive (String newArchive) --- 200,204 ---- /** * Set the <code>ARCHIVE<code> attribute. ! * @param newArchive The new archive file. */ public void setArchive (String newArchive) *************** *** 209,213 **** /** * Set the <code>CODEBASE<code> attribute. ! * @param The new applet code base. */ public void setCodeBase (String newCodeBase) --- 209,213 ---- /** * Set the <code>CODEBASE<code> attribute. ! * @param newCodeBase The new applet code base. */ public void setCodeBase (String newCodeBase) |