[Htmlparser-cvs] htmlparser/src/org/htmlparser/parserapplications/filterbuilder FilterBuilder.java,1
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2005-04-10 23:20:59
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserapplications/filterbuilder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30655/htmlparser/src/org/htmlparser/parserapplications/filterbuilder Modified Files: FilterBuilder.java Log Message: Documentation revamp part one. Deprecated node decorators. Added doSemanticAction for Text and Comment nodes. Added missing sitecapturer scripts. Fixed DOS batch files to work when called from any location. Index: FilterBuilder.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/parserapplications/filterbuilder/FilterBuilder.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FilterBuilder.java 4 Mar 2005 15:57:25 -0000 1.3 --- FilterBuilder.java 10 Apr 2005 23:20:44 -0000 1.4 *************** *** 2380,2383 **** --- 2380,2384 ---- * The entry point for this application. * Creates a new FilterBuilder and makes it visible. + * @param args [0] optional URL to operate on. */ public static void main (String args[]) *************** *** 2396,2399 **** --- 2397,2402 ---- // create a new instance of our application's frame, and make it visible FilterBuilder builder = new FilterBuilder (); + if (0 != args.length) + builder.mURLField.setText (args[0]); builder.setVisible (true); } |