Coverage Report - org.webslinger.bsf.ExecKey
 
Classes in this File Line Coverage Branch Coverage Complexity
ExecKey
0%
0/4
N/A
0
 
 1  
 package org.webslinger.bsf;
 2  
 
 3  
 import org.apache.bsf.BSFException;
 4  
 
 5  
 public class ExecKey<C> extends Key<C> {
 6  
     public ExecKey(Object script) {
 7  0
         super(script);
 8  0
     }
 9  
 
 10  
     public Object getScript() {
 11  0
         return getId();
 12  
     }
 13  
 
 14  
     public <V> C compile(Compiler<V, C> compiler, Compiler<V, C>.CompilerContext context) throws BSFException {
 15  0
         return compiler.compileKey(this, context);
 16  
     }
 17  
 }