Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/nodeDecorators
In directory sc8-pr-cvs1:/tmp/cvs-serv2656/nodeDecorators
Modified Files:
AbstractNodeDecorator.java
Log Message:
Create nodes by cloning from a list of prototypes in the Parser (NodeFactory).
So now, the startTag() is the CompositeTag, and the CompositeTagScanner just adds children.
This is an intermediate code drop on the way to integrating the scanners with the tags;
the scanners no longer create the tags (but they still create the prototypical ones).
Index: AbstractNodeDecorator.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/nodeDecorators/AbstractNodeDecorator.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** AbstractNodeDecorator.java 26 Oct 2003 19:46:18 -0000 1.13
--- AbstractNodeDecorator.java 1 Nov 2003 21:55:42 -0000 1.14
***************
*** 147,149 ****
--- 147,152 ----
}
+ public void doSemanticAction () {
+ delegate.doSemanticAction ();
+ }
}
|