public SingleFileUploadBtnBehavior getBrowseButtonDuringUpload() { return ValueBindings.get( this, "browseButtonDuringUpload", browseButtonDuringUpload, SingleFileUploadBtnBehavior.class); }
public String getWrapperTagName() { String defaultWrapperTagName = null; boolean idSpecified = Components.isComponentIdSpecified(this); if (idSpecified || (getStyle() != null) || (getStyleClass() != null)) defaultWrapperTagName = DEFAULT_WRAPPER_TAG_NAME; return ValueBindings.get(this, "wrapperTagName", wrapperTagName, defaultWrapperTagName); }
public int getFirstDayOfWeek() { return ValueBindings.get( this, "firstDayOfWeek", firstDayOfWeek, java.util.Calendar.getInstance(getLocale()).getFirstDayOfWeek()); }
public SingleFileUploadLayoutMode getLayoutMode() { return ValueBindings.get( this, "layoutMode", layoutMode, SingleFileUploadLayoutMode.FULL, SingleFileUploadLayoutMode.class); }
public RowGroupingSelectionMode getSelectionMode() { return ValueBindings.get( this, "selectionMode", selectionMode, RowGroupingSelectionMode.DATA_ROWS, RowGroupingSelectionMode.class); }
@Override public void processUpdates(FacesContext context) { beforeUpdateValuesPhase = false; super.processUpdates(context); if (incomingGroupingRules != null) { acceptNewGroupingRules(incomingGroupingRules); incomingGroupingRules = null; } if (groupingRules != null && ValueBindings.set(this, "groupingRules", groupingRules)) groupingRules = null; ValueExpression expansionStateExpression = getValueExpression("expansionState"); if (expansionStateExpression != null) expansionStateExpression.setValue(context.getELContext(), expansionState); }
public int getHintTimeout() { return ValueBindings.get(this, "hintTimeout", hintTimeout, 100); }
public String getHintStyle() { return ValueBindings.get(this, "hintStyle", hintStyle); }
public String getVar() { return ValueBindings.get(this, "var", var); }
public Integer getEnd() { return ValueBindings.get(this, "end", endIndex, Integer.class); }
public Object getItems() { return ValueBindings.get(this, "items", items, Object.class); }
public boolean isAutoUpload() { return ValueBindings.get(this, "autoUpload", autoUpload, false); }
public boolean isDuplicateAllowed() { return ValueBindings.get(this, "duplicateAllowed", duplicateAllowed, true); }
public int getMaxQuantity() { return ValueBindings.get(this, "maxQuantity", maxQuantity, 0); }
public int getMinQuantity() { return ValueBindings.get(this, "minQuantity", minQuantity, 1); }
public String getFileInfoRowStyle() { return ValueBindings.get(this, "fileInfoRowStyle", fileInfoRowStyle); }
public String getFileInfoRowClass() { return ValueBindings.get(this, "fileInfoRowClass", fileInfoRowClass); }
public String getUploadButtonText() { return ValueBindings.get(this, "uploadButtonText", uploadButtonText, "Upload"); }
public Integer getBegin() { return ValueBindings.get(this, "begin", beginIndex, Integer.class); }
public String getStopAllButtonText() { return ValueBindings.get(this, "stopAllButtonText", stopAllButtonText, "Stop all"); }
public Integer getStep() { return ValueBindings.get(this, "step", step, Integer.class); }
public String getRemoveButtonText() { return ValueBindings.get(this, "removeButtonText", removeButtonText, "Remove"); }
public String getVarStatus() { return ValueBindings.get(this, "varStatus", varStatus); }
public String getClearButtonText() { return ValueBindings.get(this, "clearButtonText", clearButtonText, "Clear"); }
public boolean isEscape() { return ValueBindings.get(this, "escape", escape, true); }
public FileUploadMode getUploadMode() { return ValueBindings.get( this, "uploadMode", uploadMode, FileUploadMode.PARALLEL, FileUploadMode.class); }
public String getHintClass() { return ValueBindings.get(this, "hintClass", hintClass); }
@Override public String getDropTargetText() { return ValueBindings.get(this, "dropTargetText", dropTargetText); }
public String getHint() { return ValueBindings.get(this, "hint", hint); }
@Override public String getBrowseButtonText() { return ValueBindings.get(this, "browseButtonText", browseButtonText); }