All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.butterfaces.component.html.ajax.HtmlWaitingPanel Maven / Gradle / Ivy
package org.butterfaces.component.html.ajax;
import javax.el.ValueExpression;
import javax.faces.application.ResourceDependencies;
import javax.faces.application.ResourceDependency;
import javax.faces.component.FacesComponent;
import javax.faces.component.UIComponentBase;
@ResourceDependencies({
@ResourceDependency(library = "butterfaces-dist-css", name = "butterfaces-overlay.css", target = "head"),
@ResourceDependency(library = "butterfaces-dist-css", name = "dist-butterfaces-bootstrap.css", target = "head"),
@ResourceDependency(library = "butterfaces-dist-bundle-dev-js", name = "butterfaces-third-party-jquery.js", target = "head"),
@ResourceDependency(library = "butterfaces-dist-bundle-dev-js", name = "butterfaces-third-party-bootstrap.js", target = "head"),
@ResourceDependency(library = "javax.faces", name = "jsf.js", target = "head"),
@ResourceDependency(library = "butterfaces-dist-js", name = "butterfaces-guid.js", target = "head"),
@ResourceDependency(library = "butterfaces-dist-js", name = "butterfaces-util-object.js", target = "head"),
@ResourceDependency(library = "butterfaces-dist-js", name = "butterfaces-overlay.js", target = "head"),
@ResourceDependency(library = "butterfaces-dist-js", name = "butterfaces-waitingpanel.jquery.js", target = "head"),
@ResourceDependency(library = "butterfaces-js", name = "butterfaces-dots.jquery.js", target = "head")})
@FacesComponent(HtmlWaitingPanel.COMPONENT_TYPE)
public class HtmlWaitingPanel extends UIComponentBase {
public static final String COMPONENT_TYPE = "org.butterfaces.component.waitingPanel";
public static final String COMPONENT_FAMILY = "org.butterfaces.component.family";
public static final String RENDERER_TYPE = "org.butterfaces.renderkit.html_basic.WaitingPanelRenderer";
protected static final String PROPERTY_DELAY = "delay";
protected static final String PROPERTY_BLOCKPAGE = "blockpage";
protected static final String PROPERTY_STYLE_CLASS = "styleClass";
protected static final String PROPERTY_STYLE = "style";
public HtmlWaitingPanel() {
super();
this.setRendererType(RENDERER_TYPE);
}
@Override
public String getFamily() {
return COMPONENT_FAMILY;
}
public String getStyleClass() {
return (String) this.getStateHelper().eval(PROPERTY_STYLE_CLASS);
}
public void setStyleClass(final String styleClass) {
this.updateStateHelper(PROPERTY_STYLE_CLASS, styleClass);
}
public String getStyle() {
return (String) this.getStateHelper().eval(PROPERTY_STYLE);
}
public void setStyle(final String style) {
this.updateStateHelper(PROPERTY_STYLE, style);
}
public Integer getDelay() {
return (Integer) this.getStateHelper().eval(PROPERTY_DELAY);
}
public void setDelay(final Integer delay) {
this.updateStateHelper(PROPERTY_DELAY, delay);
}
public boolean isBlockpage() {
final Object eval = this.getStateHelper().eval(PROPERTY_BLOCKPAGE);
return eval == null ? true : (Boolean) eval;
}
public void setBlockpage(boolean blockpage) {
this.updateStateHelper(PROPERTY_BLOCKPAGE, blockpage);
}
private void updateStateHelper(final String propertyName, final Object value) {
this.getStateHelper().put(propertyName, value);
final ValueExpression ve = this.getValueExpression(propertyName);
if (ve != null) {
ve.setValue(this.getFacesContext().getELContext(), value);
}
}
}