KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > improve > struts > taglib > layout > event > ComputeLayoutSpanEventListener


1 package fr.improve.struts.taglib.layout.event;
2
3 import javax.servlet.jsp.JspException JavaDoc;
4
5 /**
6  * Interface implemented by struts-layout tags that want to collaborate.
7  * @author jnribette
8  */

9 public interface ComputeLayoutSpanEventListener {
10
11     public Integer JavaDoc computeColspan(ComputeLayoutSpanEvent in_event) throws JspException JavaDoc;
12     
13 }
14
Popular Tags