FileDocCategorySizeDatePackage
DivTag.javaAPI DocExample2978Mon Jul 23 13:26:48 BST 2007org.apache.struts2.views.jsp.ui

DivTag

public class DivTag extends AbstractRemoteCallUITag

Fields Summary
private static final long
serialVersionUID
protected String
updateFreq
protected String
autoStart
protected String
delay
protected String
startTimerListenTopics
protected String
stopTimerListenTopics
protected String
refreshOnShow
protected String
separateScripts
Constructors Summary
Methods Summary
public org.apache.struts2.components.ComponentgetBean(com.opensymphony.xwork2.util.ValueStack stack, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)

    
            
        return new Div(stack, req, res);
    
protected voidpopulateParams()

        super.populateParams();

        Div div = (Div) component;
        div.setUpdateFreq(updateFreq);
        div.setAutoStart(autoStart);
        div.setDelay(delay);
        div.setStartTimerListenTopics(startTimerListenTopics);
        div.setStopTimerListenTopics(stopTimerListenTopics);
        div.setRefreshOnShow(refreshOnShow);
        div.setSeparateScripts(separateScripts);
    
public voidsetAutoStart(java.lang.String autoStart)

        this.autoStart = autoStart;
    
public voidsetDelay(java.lang.String delay)

        this.delay = delay;
    
public voidsetRefreshOnShow(java.lang.String refreshOnShow)

        this.refreshOnShow = refreshOnShow;
    
public voidsetSeparateScripts(java.lang.String separateScripts)

        this.separateScripts = separateScripts;
    
public voidsetStartTimerListenTopics(java.lang.String startTimerListenTopic)

        this.startTimerListenTopics = startTimerListenTopic;
    
public voidsetStopTimerListenTopics(java.lang.String stopTimerListenTopic)

        this.stopTimerListenTopics = stopTimerListenTopic;
    
public voidsetUpdateFreq(java.lang.String updateInterval)

        this.updateFreq = updateInterval;