Coverage Report - org.apache.tapestry.script.ScriptRule
 
Classes in this File Line Coverage Branch Coverage Complexity
ScriptRule
0%
0/9
N/A
1
 
 1  
 // Copyright 2004, 2005 The Apache Software Foundation
 2  
 //
 3  
 // Licensed under the Apache License, Version 2.0 (the "License");
 4  
 // you may not use this file except in compliance with the License.
 5  
 // You may obtain a copy of the License at
 6  
 //
 7  
 //     http://www.apache.org/licenses/LICENSE-2.0
 8  
 //
 9  
 // Unless required by applicable law or agreed to in writing, software
 10  
 // distributed under the License is distributed on an "AS IS" BASIS,
 11  
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12  
 // See the License for the specific language governing permissions and
 13  
 // limitations under the License.
 14  
 
 15  
 package org.apache.tapestry.script;
 16  
 
 17  
 import org.apache.tapestry.coerce.ValueConverter;
 18  
 import org.apache.tapestry.services.ExpressionEvaluator;
 19  
 import org.apache.tapestry.util.xml.BaseRule;
 20  
 import org.apache.tapestry.util.xml.RuleDirectedParser;
 21  
 import org.xml.sax.Attributes;
 22  
 
 23  
 /**
 24  
  * Rule for <script> element. Creates a
 25  
  * {@link org.apache.tapestry.script.ParsedScript}.
 26  
  * 
 27  
  * @author Howard Lewis Ship
 28  
  * @since 3.0
 29  
  */
 30  
 public class ScriptRule extends BaseRule
 31  
 {
 32  
 
 33  
     /** @since 4.0 */
 34  
     private ExpressionEvaluator _evaluator;
 35  
 
 36  
     /** @since 4.0 */
 37  
     private ValueConverter _valueConverter;
 38  
 
 39  
     public ScriptRule(ExpressionEvaluator evaluator,
 40  
             ValueConverter valueConverter)
 41  0
     {
 42  0
         _evaluator = evaluator;
 43  0
         _valueConverter = valueConverter;
 44  0
     }
 45  
 
 46  
     public void endElement(RuleDirectedParser parser)
 47  
     {
 48  0
         parser.pop();
 49  0
     }
 50  
 
 51  
     public void startElement(RuleDirectedParser parser, Attributes attributes)
 52  
     {
 53  0
         ParsedScript script = new ParsedScript(_evaluator, _valueConverter,
 54  
                 parser.getLocation());
 55  
 
 56  0
         parser.push(script);
 57  0
     }
 58  
 
 59  
 }