EchoPoint
1.0

echopoint.jsp
Interface JspBeanGenerator


public interface JspBeanGenerator

Generates content within a JSP page. A JspTemplateLayoutManager will call this interface when it wants to render itself. The bean/object returned from this method will be used by a JSP. The bean can be a true JavaBean or an Array or Collection of JavaBeans. The object implementing this method may choose to cache its output or it can generate it on the fly when ever the generateBean method is called.

Author:
Sam Taha (tahasam@yahoo.com)

Method Summary
 java.lang.Object generateBean()
          The implementing class generates the Object that is eventually passed to request scope of the corresponding JSP.
 

Method Detail

generateBean

public java.lang.Object generateBean()
The implementing class generates the Object that is eventually passed to request scope of the corresponding JSP.

Returns:
JavaBean or an Array/Collection of JavaBeans

EchoPoint
1.0