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