📄 uifieldinfo.java
字号:
* DOCUMENT ME!
*
* @param displayOrder_
*/
public void setDisplayOrder(int displayOrder_) {
displayOrder = displayOrder_;
}
/**
* DOCUMENT ME!
*
* @param displayOrder_
*/
public void setDisplayOrder(String displayOrder_) {
displayOrder = (displayOrder_ == null) ? 0
: Integer.valueOf(displayOrder_)
.intValue();
}
/**
* DOCUMENT ME!
*
* @return
*/
public int getDisplayOrder() {
return displayOrder;
}
/**
* DOCUMENT ME!
*
* @param isVisible_
*/
public void setIsVisible(boolean isVisible_) {
isVisible = isVisible_;
}
/**
* DOCUMENT ME!
*
* @param isVisible_
*/
public void setIsVisible(String isVisible_) {
isVisible = (isVisible_ == null) ? false
: isVisible_.toUpperCase().equals("Y");
}
/**
* DOCUMENT ME!
*
* @return
*/
public boolean getIsVisible() {
return isVisible;
}
/**
* DOCUMENT ME!
*
* @param isReadOnly_
*/
public void setIsReadOnly(boolean isReadOnly_) {
isReadOnly = isReadOnly_;
}
/**
* DOCUMENT ME!
*
* @param isReadOnly_
*/
public void setIsReadOnly(String isReadOnly_) {
isReadOnly = (isReadOnly_ == null) ? false
: isReadOnly_.toUpperCase().equals("Y");
}
/**
* DOCUMENT ME!
*
* @return
*/
public boolean getIsReadOnly() {
return isReadOnly;
}
// public void setIsUpdateable(boolean isUpdateable_) {
// isUpdateable = isUpdateable_;
// }
// public void setIsUpdateable(String isUpdateable_) {
// isUpdateable = isUpdateable_==null ? false : isUpdateable_.toUpperCase().equals("Y");
// }
// public boolean getIsUpdateable() {
// return isUpdateable;
// }
public void setIsMandatory(boolean isMandatory_) {
isMandatory = isMandatory_;
}
/**
* DOCUMENT ME!
*
* @param isMandatory_
*/
public void setIsMandatory(String isMandatory_) {
isMandatory = (isMandatory_ == null) ? false
: isMandatory_.toUpperCase()
.equals("Y");
}
/**
* DOCUMENT ME!
*
* @return
*/
public boolean getIsMandatory() {
return isMandatory;
}
/**
* DOCUMENT ME!
*
* @param isSearchable_
*/
public void setIsSearchable(boolean isSearchable_) {
isSearchable = isSearchable_;
}
/**
* DOCUMENT ME!
*
* @param isSearchable_
*/
public void setIsSearchable(String isSearchable_) {
isSearchable = (isSearchable_ == null) ? false
: isSearchable_.toUpperCase()
.equals("Y");
}
/**
* DOCUMENT ME!
*
* @return
*/
public boolean getIsSearchable() {
return isSearchable;
}
/**
* DOCUMENT ME!
*
* @param displayObjectId_
*/
public void setDisplayObjectId(String displayObjectId_) {
displayObjectId = (displayObjectId_ == null) ? "" : displayObjectId_;
}
/**
* DOCUMENT ME!
*
* @return
*/
public String getDisplayObjectId() {
return displayObjectId;
}
/**
* DOCUMENT ME!
*
* @param uiDisplayObject_
*/
public void setUiDisplayObject(UIDisplayObject uiDisplayObject_) {
uiDisplayObject = uiDisplayObject_;
}
/**
* DOCUMENT ME!
*
* @return
*/
public UIDisplayObject getUiDisplayObject() {
return uiDisplayObject;
}
/**
* DOCUMENT ME!
*
* @param rowSpan_
*/
public void setRowSpan(int rowSpan_) {
rowSpan = rowSpan_;
}
/**
* DOCUMENT ME!
*
* @param rowSpan_
*/
public void setRowSpan(String rowSpan_) {
rowSpan = (rowSpan_ == null) ? 0 : Integer.valueOf(rowSpan_).intValue();
}
/**
* DOCUMENT ME!
*
* @return
*/
public int getRowSpan() {
return rowSpan;
}
/**
* DOCUMENT ME!
*
* @param colSpan_
*/
public void setColSpan(int colSpan_) {
colSpan = colSpan_;
}
/**
* DOCUMENT ME!
*
* @param colSpan_
*/
public void setColSpan(String colSpan_) {
colSpan = (colSpan_ == null) ? 0 : Integer.valueOf(colSpan_).intValue();
}
/**
* DOCUMENT ME!
*
* @return
*/
public int getColSpan() {
return colSpan;
}
public void setStartOnNewRow(boolean startOnNewRow_) {
startOnNewRow = startOnNewRow_;
}
/**
* DOCUMENT ME!
*
* @param startOnNewRow_
*/
public void setStartOnNewRow(String startOnNewRow_) {
startOnNewRow = (startOnNewRow_ == null) ? false
: startOnNewRow_.toUpperCase()
.equals("Y");
}
/**
* DOCUMENT ME!
*
* @return
*/
public boolean getStartOnNewRow() {
return startOnNewRow;
}
// public void setUiScreen(UIScreen uiScreen_) {
// uiScreen = uiScreen_;
// }
// public UIScreen getUiScreen() {
// return uiScreen;
// }
// public void setUiScreenSection(UIScreenSection uiScreenSection_) {
// uiScreenSection = uiScreenSection_;
// }
// public UIScreenSection getUiScreenSection() {
// return uiScreenSection;
// }
public void setUiAttribute(UIAttribute uiAttribute_) {
uiAttribute = uiAttribute_;
}
/**
* DOCUMENT ME!
*
* @return
*/
public UIAttribute getUiAttribute() {
return uiAttribute;
}
// public void setUiEntity(UIEntity uiEntity_) {
// uiEntity = uiEntity_;
// }
// public UIEntity getUiEntity() {
// return uiEntity;
// }
public void setUiScreenSectionEntity(
UIScreenSectionEntity uiScreenSectionEntity_) {
uiScreenSectionEntity = uiScreenSectionEntity_;
}
/**
* DOCUMENT ME!
*
* @return
*/
public UIScreenSectionEntity getUiScreenSectionEntity() {
return uiScreenSectionEntity;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -