?? formproperty.java
字號:
package com.easyjf.web;
import java.util.List;
/**
*
* <p>
* Title:表單屬性配置信息
* </p>
* <p>
* Description: 處理easyjf-web.xml文件中的配置有關(guān)表單字段屬性的信息
* </p>
* <p>
* Copyright: Copyright (c) 2006
* </p>
* <p>
* Company: www.easyjf.com
* </p>
*
* @author 蔡世友
* @version 1.0
*/
public class FormProperty {
private String name;
private String initial;
private String size;
private String type;
private String notNull;
private List event;
public String getInitial() {
return initial;
}
public void setInitial(String initial) {
this.initial = initial == null ? "" : initial;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name == null ? "" : name;
}
public String getNotNull() {
return notNull;
}
public void setNotNull(String notNull) {
this.notNull = notNull == null ? "" : notNull;
}
public String getSize() {
return size;
}
public void setSize(String size) {
this.size = size == null ? "" : size;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type == null ? "" : type;
}
public List getEvent() {
return event;
}
public void setEvent(List event) {
this.event = event;
}
public String toString() {
String s;
s = "name=" + name + ";rinitial=" + initial + ";size=" + size
+ ";type=" + type + ";notNull=" + notNull;
return s;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -