⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clientvalidationbean.java

📁 adf-faces 甲骨文的jsf组件,功能很强.开源免费.
💻 JAVA
字号:
package oracle.adfdemo.view.faces;
import java.math.BigDecimal;



public class ClientValidationBean implements java.io.Serializable
{

  public ClientValidationBean()
  {
  }

  public BigDecimal getBigDecimal()
  {
    return _bigDecimal ;
  }

  public void setBigDecimal(BigDecimal bigDecimal)
  {
    _bigDecimal = bigDecimal;
  }


  public Integer getInteger()
  {
    return _integer ;
  }

  public void setInteger(Integer integer)
  {
    _integer = integer;
  }

  public Short getShort()
  {
    return _short ;
  }

  public void setShort(Short shortObj)
  {
    _short = shortObj;
  }

  public Byte getByte()
  {
    return _byte ;
  }

  public void setByte(Byte byteObj)
  {
    _byte = byteObj;
  }

  public Long getLong()
  {
    return _long ;
  }

  public void setLong(Long longObj)
  {
    _long = longObj;
  }

  public Long getLongValue()
  {
    return _longValue ;
  }

  public void setLongValue(Long longObj)
  {
    _longValue = longObj;
  }

  public Float getFloat()
  {
    return _float ;
  }

  public void setFloat(Float floatObj)
  {
    _float = floatObj;
  }

  public Double getDouble()
  {
    return _double ;
  }

  public void setDouble(Double doubleObj)
  {
    _double = doubleObj;
  }


  public String getText()
  {
    return _text ;
  }

  public void setText(String text)
  {
    _text = text;
  }

  public Integer getSsn()
  {
    return _ssn ;
  }

  public void setSsn(Integer ssn)
  {
    _ssn = ssn;
  }

  
  public String getRegExpValue()
  {
    return _regExpValue;
  }
  
  public void setRegExpValue(String regExpValue)
  {
    _regExpValue = regExpValue;
  }
  
  public String getByteLengthValue()
  {
    return _byteLegthValue;
  }
  
  public void setByteLengthValue(String value)
  {
    _byteLegthValue = value;
  }


  private Integer _ssn = null;
  private String _text = "This is bound text";
  private Integer _integer = null;
  private BigDecimal _bigDecimal = null;
  private Long _long = null;
  private Long _longValue = null;
  private Short _short = null;
  private Byte _byte = null;
  private Double _double = null;
  private Float _float = null;

  private String _regExpValue = null;

  private String _byteLegthValue = null;


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -