|
Business Components | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.jdeveloper.html.HTMLFieldRendererImpl
This class provides a base implementation of the HTMLFieldRenderer interface. Use this class as the base class for any new field renderers.
Field Summary | |
protected int |
nHeight
|
protected int |
nLength
|
protected int |
nWidth
|
protected java.lang.String |
sClass
|
protected java.lang.String |
sName
|
protected java.lang.String |
sPrompt
|
protected java.lang.String |
sValue
|
Constructor Summary | |
HTMLFieldRendererImpl()
|
Method Summary | |
java.lang.String |
getCSSClassName()
Gets the name of the CSS (cascading style sheet) used by this field. |
int |
getDisplayHeight()
Gets the display height, in characters, of this field. |
int |
getDisplayWidth()
Gets the display width, in characters, of this field. |
java.lang.String |
getFieldName()
Gets this FORM field's name. |
int |
getMaxDataLength()
Gets the maximum input length, in characters, of this field. |
java.lang.String |
getPromptText()
Gets the prompt to be displayed next to this input field. |
java.lang.String |
getValue()
Gets this field's current value. |
void |
populateForm(HTMLForm aForm)
Populates the provided HTML form with this field's HTMLElement. |
void |
setCSSClassName(java.lang.String sClass)
Sets the CSS (cascading style sheet) class name to be used by this field. |
void |
setDisplayHeight(int nHeight)
Sets the display height, in characters, of this field. |
void |
setDisplayWidth(int nWidth)
Sets the display width, in characters, of this field. |
void |
setFieldName(java.lang.String sName)
Sets this FORM field's name. |
void |
setMaxDataLength(int nLength)
Sets the maximum input length, in characters, of this field. |
void |
setPromptText(java.lang.String sPrompt)
Sets the prompt to be displayed next to this input field. |
void |
setValue(java.lang.String sValue)
Sets this field's current value. |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Field Detail |
protected int nWidth
protected int nLength
protected int nHeight
protected java.lang.String sPrompt
protected java.lang.String sClass
protected java.lang.String sValue
protected java.lang.String sName
Constructor Detail |
public HTMLFieldRendererImpl()
Method Detail |
public void setFieldName(java.lang.String sName)
sName
- name of this FORM field.public java.lang.String getFieldName()
public void setDisplayWidth(int nWidth)
nWidth
- the display width, in characters.public int getDisplayWidth()
public void setDisplayHeight(int nHeight)
nHeight
- the display height, in characters.public int getDisplayHeight()
public void setMaxDataLength(int nLength)
nLength
- the maximum input length, in characters.public int getMaxDataLength()
public void setPromptText(java.lang.String sPrompt)
sPrompt
- the prompt for this input field.public java.lang.String getPromptText()
public void setCSSClassName(java.lang.String sClass)
sClass
- the class name of the CSS.public java.lang.String getCSSClassName()
public void setValue(java.lang.String sValue)
sValue
- current value of this field.public java.lang.String getValue()
public void populateForm(HTMLForm aForm)
aForm
- the HTML form to be populated.
|
Business Components | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |