📄 abstractremotecalluitag.java
字号:
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi space
// Source File Name: AbstractRemoteCallUITag.java
package org.apache.struts2.views.jsp.ui;
import org.apache.struts2.components.RemoteUICallBean;
// Referenced classes of package org.apache.struts2.views.jsp.ui:
// AbstractClosingTag
public abstract class AbstractRemoteCallUITag extends AbstractClosingTag
{
protected String href;
protected String listenTopics;
protected String notifyTopics;
protected String loadingText;
protected String errorText;
protected String beforeLoading;
protected String afterLoading;
protected String executeScripts;
protected String handler;
protected String formId;
protected String formFilter;
protected String showErrorTransportText;
protected String indicator;
protected String showLoadingText;
public AbstractRemoteCallUITag()
{
}
protected void populateParams()
{
super.populateParams();
RemoteUICallBean remote = (RemoteUICallBean)component;
remote.setHref(href);
remote.setListenTopics(listenTopics);
remote.setLoadingText(loadingText);
remote.setErrorText(errorText);
remote.setAfterLoading(afterLoading);
remote.setBeforeLoading(beforeLoading);
remote.setExecuteScripts(executeScripts);
remote.setHandler(handler);
remote.setFormFilter(formFilter);
remote.setFormId(formId);
remote.setNotifyTopics(notifyTopics);
remote.setShowErrorTransportText(showErrorTransportText);
remote.setIndicator(indicator);
remote.setShowLoadingText(showLoadingText);
}
public void setHref(String href)
{
this.href = href;
}
public void setErrorText(String errorText)
{
this.errorText = errorText;
}
public void setLoadingText(String loadingText)
{
this.loadingText = loadingText;
}
public void setListenTopics(String listenTopics)
{
this.listenTopics = listenTopics;
}
public void setAfterLoading(String afterLoading)
{
this.afterLoading = afterLoading;
}
public void setBeforeLoading(String beforeLoading)
{
this.beforeLoading = beforeLoading;
}
public void setExecuteScripts(String executeScripts)
{
this.executeScripts = executeScripts;
}
public void setHandler(String handler)
{
this.handler = handler;
}
public void setFormFilter(String formFilter)
{
this.formFilter = formFilter;
}
public void setFormId(String formId)
{
this.formId = formId;
}
public void setNotifyTopics(String notifyTopics)
{
this.notifyTopics = notifyTopics;
}
public void setShowErrorTransportText(String showErrorTransportText)
{
this.showErrorTransportText = showErrorTransportText;
}
public void setIndicator(String indicator)
{
this.indicator = indicator;
}
public void setShowLoadingText(String showLoadingText)
{
this.showLoadingText = showLoadingText;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -