Coverage Report - org.webslinger.rules.AbstractValue
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractValue
60%
3/5
N/A
0
 
 1  
 package org.webslinger.rules;
 2  
 
 3  
 import java.io.IOException;
 4  
 import javax.servlet.ServletRequest;
 5  
 
 6  
 import org.webslinger.Webslinger;
 7  
 import org.webslinger.container.WebslingerContainer;
 8  
 
 9  
 public abstract class AbstractValue<T> extends SimpleNode {
 10  
     public AbstractValue(int id) {
 11  0
         super(id);
 12  0
     }
 13  
 
 14  
     public AbstractValue(Rules p, int id) {
 15  212
         super(p, id);
 16  212
     }
 17  
 
 18  
     public void compile(WebslingerContainer container) throws IOException {
 19  123
     }
 20  
 
 21  
     public abstract T getFirstValue(ServletRequest request, Webslinger top) throws IOException;
 22  
 }