[Htmlparser-cvs] htmlparser/src/org/htmlparser/tags AppletTag.java,1.32,1.33
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-10-26 03:55:58
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags In directory sc8-pr-cvs1:/tmp/cvs-serv18387/tags Modified Files: AppletTag.java Log Message: Quiet down the test output. Index: AppletTag.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/AppletTag.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** AppletTag.java 20 Oct 2003 01:28:03 -0000 1.32 --- AppletTag.java 26 Oct 2003 03:53:32 -0000 1.33 *************** *** 164,168 **** String paramValue; Vector attributes; - Attribute attribute; StringNode string; --- 164,167 ---- *************** *** 200,216 **** paramName = (String)e.nextElement (); paramValue = (String)newAppletParams.get (paramName); ! attribute = new Attribute ("PARAM", null); ! System.out.println (attribute); ! attributes.addElement (attribute); attributes.addElement (new Attribute (" ")); ! attribute = new Attribute ("VALUE", paramValue, '"'); ! System.out.println (attribute); ! attributes.addElement (attribute); attributes.addElement (new Attribute (" ")); ! attribute = new Attribute ("NAME", paramName, '"'); ! System.out.println (attribute); ! attributes.addElement (attribute); tag = new Tag (null, 0, 0, attributes); - System.out.println (tag.toHtml ()); kids.add (tag); } --- 199,208 ---- paramName = (String)e.nextElement (); paramValue = (String)newAppletParams.get (paramName); ! attributes.addElement (new Attribute ("PARAM", null)); attributes.addElement (new Attribute (" ")); ! attributes.addElement (new Attribute ("VALUE", paramValue, '"')); attributes.addElement (new Attribute (" ")); ! attributes.addElement (new Attribute ("NAME", paramName, '"')); tag = new Tag (null, 0, 0, attributes); kids.add (tag); } |