Ejemplo n.º 1
0
 public SingleFileUploadBtnBehavior getBrowseButtonDuringUpload() {
   return ValueBindings.get(
       this,
       "browseButtonDuringUpload",
       browseButtonDuringUpload,
       SingleFileUploadBtnBehavior.class);
 }
Ejemplo n.º 2
0
 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);
 }
Ejemplo n.º 3
0
 public int getFirstDayOfWeek() {
   return ValueBindings.get(
       this,
       "firstDayOfWeek",
       firstDayOfWeek,
       java.util.Calendar.getInstance(getLocale()).getFirstDayOfWeek());
 }
Ejemplo n.º 4
0
 public SingleFileUploadLayoutMode getLayoutMode() {
   return ValueBindings.get(
       this,
       "layoutMode",
       layoutMode,
       SingleFileUploadLayoutMode.FULL,
       SingleFileUploadLayoutMode.class);
 }
Ejemplo n.º 5
0
 public RowGroupingSelectionMode getSelectionMode() {
   return ValueBindings.get(
       this,
       "selectionMode",
       selectionMode,
       RowGroupingSelectionMode.DATA_ROWS,
       RowGroupingSelectionMode.class);
 }
Ejemplo n.º 6
0
  @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);
  }
Ejemplo n.º 7
0
 public int getHintTimeout() {
   return ValueBindings.get(this, "hintTimeout", hintTimeout, 100);
 }
Ejemplo n.º 8
0
 public String getHintStyle() {
   return ValueBindings.get(this, "hintStyle", hintStyle);
 }
Ejemplo n.º 9
0
 public String getVar() {
   return ValueBindings.get(this, "var", var);
 }
Ejemplo n.º 10
0
 public Integer getEnd() {
   return ValueBindings.get(this, "end", endIndex, Integer.class);
 }
Ejemplo n.º 11
0
 public Object getItems() {
   return ValueBindings.get(this, "items", items, Object.class);
 }
Ejemplo n.º 12
0
 public boolean isAutoUpload() {
   return ValueBindings.get(this, "autoUpload", autoUpload, false);
 }
Ejemplo n.º 13
0
 public boolean isDuplicateAllowed() {
   return ValueBindings.get(this, "duplicateAllowed", duplicateAllowed, true);
 }
Ejemplo n.º 14
0
 public int getMaxQuantity() {
   return ValueBindings.get(this, "maxQuantity", maxQuantity, 0);
 }
Ejemplo n.º 15
0
 public int getMinQuantity() {
   return ValueBindings.get(this, "minQuantity", minQuantity, 1);
 }
Ejemplo n.º 16
0
 public String getFileInfoRowStyle() {
   return ValueBindings.get(this, "fileInfoRowStyle", fileInfoRowStyle);
 }
Ejemplo n.º 17
0
 public String getFileInfoRowClass() {
   return ValueBindings.get(this, "fileInfoRowClass", fileInfoRowClass);
 }
Ejemplo n.º 18
0
 public String getUploadButtonText() {
   return ValueBindings.get(this, "uploadButtonText", uploadButtonText, "Upload");
 }
Ejemplo n.º 19
0
 public Integer getBegin() {
   return ValueBindings.get(this, "begin", beginIndex, Integer.class);
 }
Ejemplo n.º 20
0
 public String getStopAllButtonText() {
   return ValueBindings.get(this, "stopAllButtonText", stopAllButtonText, "Stop all");
 }
Ejemplo n.º 21
0
 public Integer getStep() {
   return ValueBindings.get(this, "step", step, Integer.class);
 }
Ejemplo n.º 22
0
 public String getRemoveButtonText() {
   return ValueBindings.get(this, "removeButtonText", removeButtonText, "Remove");
 }
Ejemplo n.º 23
0
 public String getVarStatus() {
   return ValueBindings.get(this, "varStatus", varStatus);
 }
Ejemplo n.º 24
0
 public String getClearButtonText() {
   return ValueBindings.get(this, "clearButtonText", clearButtonText, "Clear");
 }
Ejemplo n.º 25
0
 public boolean isEscape() {
   return ValueBindings.get(this, "escape", escape, true);
 }
Ejemplo n.º 26
0
 public FileUploadMode getUploadMode() {
   return ValueBindings.get(
       this, "uploadMode", uploadMode, FileUploadMode.PARALLEL, FileUploadMode.class);
 }
Ejemplo n.º 27
0
 public String getHintClass() {
   return ValueBindings.get(this, "hintClass", hintClass);
 }
Ejemplo n.º 28
0
 @Override
 public String getDropTargetText() {
   return ValueBindings.get(this, "dropTargetText", dropTargetText);
 }
Ejemplo n.º 29
0
 public String getHint() {
   return ValueBindings.get(this, "hint", hint);
 }
Ejemplo n.º 30
0
 @Override
 public String getBrowseButtonText() {
   return ValueBindings.get(this, "browseButtonText", browseButtonText);
 }