?? clientvalidationbean.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 + -