@@ -471,18 +471,16 @@ protected void initRules(IRule<T>... rules) {
471
471
int optSize = (rules .length > 64 ? rules .length * 2 : 64 );
472
472
473
473
// init the rule maps
474
- // tagRuleMap = new HashMap<String, List<IRule<T>>>(optSize);
475
- // attrRuleMap = new HashMap<String, List<IRule<T>>>(optSize);
476
- // charRuleMap = new HashMap<String, List<IRule<T>>>(optSize);
477
-
478
474
tagRuleMap = new HashMap <Integer , List <IRule <T >>>(optSize );
479
475
attrRuleMap = new HashMap <Integer , List <IRule <T >>>(optSize );
480
476
charRuleMap = new HashMap <Integer , List <IRule <T >>>(optSize );
481
477
482
478
// init the rules
483
479
List <IRule <T >> ruleList = null ;
484
480
485
- for (IRule <T > rule : rules ) {
481
+ for (int i = 0 , length = rules .length ; i < length ; i ++) {
482
+ IRule <T > rule = rules [i ];
483
+
486
484
switch (rule .getType ()) {
487
485
case TAG :
488
486
// Get the rule list for this path
@@ -645,7 +643,9 @@ protected void doStartTag(T userObject) {
645
643
646
644
// Process the TAG rules
647
645
if (tagRuleList != null ) {
648
- for (IRule <T > rule : tagRuleList ) {
646
+ for (int i = 0 , size = tagRuleList .size (); i < size ; i ++) {
647
+ IRule <T > rule = tagRuleList .get (i );
648
+
649
649
if (DEBUG )
650
650
log ("\t \t Running TAG Rule: %s" , rule );
651
651
@@ -655,7 +655,9 @@ protected void doStartTag(T userObject) {
655
655
656
656
// Process the ATTR rules
657
657
if (attrRuleList != null ) {
658
- for (IRule <T > rule : attrRuleList ) {
658
+ for (int i = 0 , size = attrRuleList .size (); i < size ; i ++) {
659
+ IRule <T > rule = attrRuleList .get (i );
660
+
659
661
if (DEBUG )
660
662
log ("\t \t Running ATTR Rule: %s" , rule );
661
663
@@ -678,8 +680,8 @@ protected void doStartTag(T userObject) {
678
680
* other approach would have been magnitudes more expensive both
679
681
* in memory and CPU requirements than doing a simple substring.
680
682
*/
681
- for (int i = 0 ; i < attrNames .length ; i ++) {
682
- String attrName = attrNames [i ];
683
+ for (int j = 0 ; j < attrNames .length ; j ++) {
684
+ String attrName = attrNames [j ];
683
685
String localName = null ;
684
686
String namespaceURI = null ;
685
687
@@ -718,7 +720,7 @@ protected void doStartTag(T userObject) {
718
720
attrName .length ());
719
721
720
722
// Give the parsed attribute value to the matching rule
721
- rule .handleParsedAttribute (this , i ,
723
+ rule .handleParsedAttribute (this , j ,
722
724
xpp .getAttributeValue (namespaceURI , localName ),
723
725
userObject );
724
726
}
@@ -758,7 +760,9 @@ protected void doText(T userObject) {
758
760
String text = xpp .getText ();
759
761
760
762
// Give the parsed text to all matching IRules for this path
761
- for (IRule <T > rule : ruleList ) {
763
+ for (int i = 0 , size = ruleList .size (); i < size ; i ++) {
764
+ IRule <T > rule = ruleList .get (i );
765
+
762
766
if (DEBUG )
763
767
log ("\t \t Running Rule: %s" , rule );
764
768
@@ -789,11 +793,13 @@ protected void doEndTag(T userObject) {
789
793
log ("\t %d TAG rules found for END_TAG..." , tagRuleList .size ());
790
794
791
795
// Process the TAG rules
792
- for (IRule <T > rule : tagRuleList ) {
796
+ for (int i = 0 , size = tagRuleList .size (); i < size ; i ++) {
797
+ IRule <T > rule = tagRuleList .get (i );
798
+
793
799
if (DEBUG )
794
800
log ("\t \t Running TAG Rule: %s" , rule );
795
801
796
- rule .handleTag (this , true , userObject );
802
+ rule .handleTag (this , false , userObject );
797
803
}
798
804
}
799
805
0 commit comments