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.
/*
* JBoss, Home of Professional Open Source
* Copyright , Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.richfaces.component;
import javax.annotation.Generated;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import javax.faces.context.FacesContext;
import javax.faces.component.UIComponent;
import javax.faces.component.behavior.ClientBehaviorHolder;
import javax.el.MethodExpression;
import javax.el.ValueExpression;
import javax.faces.component.StateHelper;
import org.richfaces.component.AbstractProgressBar;
/**
* Class provides base component class for progress bar
@author "Andrey Markavtsov"
**/
@Generated({"RichFaces CDK", "4.0.0-SNAPSHOT"})
publicclassUIProgressBarextendsAbstractProgressBarimplementsClientBehaviorHolder {
publicstatic final String COMPONENT_TYPE="org.richfaces.ProgressBar";
publicstatic final String COMPONENT_FAMILY="org.richfaces.ProgressBar";
@Override
public String getFamily() {
return COMPONENT_FAMILY;
}
publicUIProgressBar() {
super();
setRendererType("org.richfaces.ProgressBarRenderer");
}
privatestatic final Collection EVENT_NAMES = Collections.unmodifiableCollection(Arrays.asList(
"beforedomupdate",
"mousedown",
"finish",
"dblclick",
"complete",
"click",
"mouseover",
"begin",
"mousemove",
"mouseout",
"mouseup"
));
public CollectiongetEventNames() {
return EVENT_NAMES;
}
public String getDefaultEventName() {
returnnull;
}
protectedenum Properties {
data,
enabled,
finishClass,
initialClass,
interval,
label,
maxValue,
minValue,
mode,
onbeforedomupdate,
onbegin,
onclick,
oncomplete,
ondblclick,
onfinish,
onmousedown,
onmousemove,
onmouseout,
onmouseover,
onmouseup,
progressClass,
remainingClass,
resource,
style,
styleClass,
value
}
public Object getData() {
Object value = (Object) getStateHelper().eval(Properties.data);
returnvalue;
}
publicvoidsetData(Object data) {
getStateHelper().put(Properties.data, data);
}
public boolean isEnabled() {
Boolean value = (Boolean) getStateHelper().eval(Properties.enabled, false);
returnvalue;
}
publicvoidsetEnabled(boolean enabled) {
getStateHelper().put(Properties.enabled, enabled);
}
public String getFinishClass() {
String value = (String) getStateHelper().eval(Properties.finishClass);
returnvalue;
}
publicvoidsetFinishClass(String finishClass) {
getStateHelper().put(Properties.finishClass, finishClass);
}
public String getInitialClass() {
String value = (String) getStateHelper().eval(Properties.initialClass);
returnvalue;
}
publicvoidsetInitialClass(String initialClass) {
getStateHelper().put(Properties.initialClass, initialClass);
}
publicintgetInterval() {
Integer value = (Integer) getStateHelper().eval(Properties.interval, Integer.MIN_VALUE);
returnvalue;
}
publicvoidsetInterval(int interval) {
getStateHelper().put(Properties.interval, interval);
}
public String getLabel() {
String value = (String) getStateHelper().eval(Properties.label);
returnvalue;
}
publicvoidsetLabel(String label) {
getStateHelper().put(Properties.label, label);
}
public Object getMaxValue() {
Object value = (Object) getStateHelper().eval(Properties.maxValue);
returnvalue;
}
publicvoidsetMaxValue(Object maxValue) {
getStateHelper().put(Properties.maxValue, maxValue);
}
public Object getMinValue() {
Object value = (Object) getStateHelper().eval(Properties.minValue);
returnvalue;
}
publicvoidsetMinValue(Object minValue) {
getStateHelper().put(Properties.minValue, minValue);
}
public SwitchType getMode() {
SwitchType value = (SwitchType) getStateHelper().eval(Properties.mode);
returnvalue;
}
publicvoidsetMode(SwitchType mode) {
getStateHelper().put(Properties.mode, mode);
}
public String getOnbeforedomupdate() {
String value = (String) getStateHelper().eval(Properties.onbeforedomupdate);
returnvalue;
}
publicvoidsetOnbeforedomupdate(String onbeforedomupdate) {
getStateHelper().put(Properties.onbeforedomupdate, onbeforedomupdate);
}
public String getOnbegin() {
String value = (String) getStateHelper().eval(Properties.onbegin);
returnvalue;
}
publicvoidsetOnbegin(String onbegin) {
getStateHelper().put(Properties.onbegin, onbegin);
}
public String getOnclick() {
String value = (String) getStateHelper().eval(Properties.onclick);
returnvalue;
}
publicvoidsetOnclick(String onclick) {
getStateHelper().put(Properties.onclick, onclick);
}
public String getOncomplete() {
String value = (String) getStateHelper().eval(Properties.oncomplete);
returnvalue;
}
publicvoidsetOncomplete(String oncomplete) {
getStateHelper().put(Properties.oncomplete, oncomplete);
}
public String getOndblclick() {
String value = (String) getStateHelper().eval(Properties.ondblclick);
returnvalue;
}
publicvoidsetOndblclick(String ondblclick) {
getStateHelper().put(Properties.ondblclick, ondblclick);
}
public String getOnfinish() {
String value = (String) getStateHelper().eval(Properties.onfinish);
returnvalue;
}
publicvoidsetOnfinish(String onfinish) {
getStateHelper().put(Properties.onfinish, onfinish);
}
public String getOnmousedown() {
String value = (String) getStateHelper().eval(Properties.onmousedown);
returnvalue;
}
publicvoidsetOnmousedown(String onmousedown) {
getStateHelper().put(Properties.onmousedown, onmousedown);
}
public String getOnmousemove() {
String value = (String) getStateHelper().eval(Properties.onmousemove);
returnvalue;
}
publicvoidsetOnmousemove(String onmousemove) {
getStateHelper().put(Properties.onmousemove, onmousemove);
}
public String getOnmouseout() {
String value = (String) getStateHelper().eval(Properties.onmouseout);
returnvalue;
}
publicvoidsetOnmouseout(String onmouseout) {
getStateHelper().put(Properties.onmouseout, onmouseout);
}
public String getOnmouseover() {
String value = (String) getStateHelper().eval(Properties.onmouseover);
returnvalue;
}
publicvoidsetOnmouseover(String onmouseover) {
getStateHelper().put(Properties.onmouseover, onmouseover);
}
public String getOnmouseup() {
String value = (String) getStateHelper().eval(Properties.onmouseup);
returnvalue;
}
publicvoidsetOnmouseup(String onmouseup) {
getStateHelper().put(Properties.onmouseup, onmouseup);
}
public String getProgressClass() {
String value = (String) getStateHelper().eval(Properties.progressClass);
returnvalue;
}
publicvoidsetProgressClass(String progressClass) {
getStateHelper().put(Properties.progressClass, progressClass);
}
public String getRemainingClass() {
String value = (String) getStateHelper().eval(Properties.remainingClass);
returnvalue;
}
publicvoidsetRemainingClass(String remainingClass) {
getStateHelper().put(Properties.remainingClass, remainingClass);
}
public String getResource() {
String value = (String) getStateHelper().eval(Properties.resource);
returnvalue;
}
publicvoidsetResource(String resource) {
getStateHelper().put(Properties.resource, resource);
}
public String getStyle() {
String value = (String) getStateHelper().eval(Properties.style);
returnvalue;
}
publicvoidsetStyle(String style) {
getStateHelper().put(Properties.style, style);
}
public String getStyleClass() {
String value = (String) getStateHelper().eval(Properties.styleClass);
returnvalue;
}
publicvoidsetStyleClass(String styleClass) {
getStateHelper().put(Properties.styleClass, styleClass);
}
public Object getValue() {
Object value = (Object) getStateHelper().eval(Properties.value);
returnvalue;
}
publicvoidsetValue(Object value) {
getStateHelper().put(Properties.value, value);
}
}