Coverage Report - org.seasar.cubby.tags.NullTag
 
Classes in this File Line Coverage Branch Coverage Complexity
NullTag
100%
2/2
N/A
0
 
 1  
 package org.seasar.cubby.tags;
 2  
 
 3  
 import java.io.IOException;
 4  
 
 5  
 import javax.servlet.jsp.JspException;
 6  
 
 7  
 /**
 8  
  * 何も出力しな?タグ?
 9  
  * <p>
 10  
  * こ?タグは何も出力しません。body要?は削除されます??
 11  
  * </p>
 12  
  * 
 13  
  * @author agata
 14  
  * 
 15  
  */
 16  1
 public class NullTag extends DynamicAttributesTagSupport {
 17  
         @Override
 18  
         public void doTag() throws JspException, IOException {
 19  1
         }
 20  
 }