Business Components

oracle.jdeveloper.html
Class LOVField

java.lang.Object
  |
  +--oracle.jdeveloper.html.HTMLFieldRendererImpl
        |
        +--oracle.jdeveloper.html.LOVField

public class LOVField
extends HTMLFieldRendererImpl

Represents a date field render.

Version:
PUBLIC

Field Summary
protected  java.lang.String dataAttribute
           
protected  java.lang.String displayAttributes
           
protected  java.lang.String viewObjectName
           
 
Fields inherited from class oracle.jdeveloper.html.HTMLFieldRendererImpl
nHeight, nLength, nWidth, sClass, sName, sPrompt, sValue
 
Constructor Summary
LOVField()
           
 
Method Summary
 java.lang.String getDataAttributes()
           
 java.lang.String getDisplayAttributes()
           
 java.lang.String getViewObject()
           
 void populateForm(HTMLForm aForm)
          Populates the provided HTML form with the field's HTMLElement.
 void setDataAttributes(java.lang.String dataAttr)
           
 void setDisplayAttributes(java.lang.String dAttributes)
           
 void setViewObject(java.lang.String voName)
           
 
Methods inherited from class oracle.jdeveloper.html.HTMLFieldRendererImpl
getCSSClassName, getDisplayHeight, getDisplayWidth, getFieldName, getMaxDataLength, getPromptText, getValue, setCSSClassName, setDisplayHeight, setDisplayWidth, setFieldName, setMaxDataLength, setPromptText, setValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

viewObjectName

protected java.lang.String viewObjectName

displayAttributes

protected java.lang.String displayAttributes

dataAttribute

protected java.lang.String dataAttribute
Constructor Detail

LOVField

public LOVField()
Method Detail

setViewObject

public void setViewObject(java.lang.String voName)

getViewObject

public java.lang.String getViewObject()

setDisplayAttributes

public void setDisplayAttributes(java.lang.String dAttributes)

getDisplayAttributes

public java.lang.String getDisplayAttributes()

setDataAttributes

public void setDataAttributes(java.lang.String dataAttr)

getDataAttributes

public java.lang.String getDataAttributes()

populateForm

public void populateForm(HTMLForm aForm)
Populates the provided HTML form with the field's HTMLElement. You can use any of the HTMLForm methods in addition to providing your own rendition of the field in HTML. Please see the implementation of the ReadOnlyField and PickList classes for more information.
Overrides:
populateForm in class HTMLFieldRendererImpl
Tags copied from class: HTMLFieldRendererImpl
Parameters:
aForm - the HTML form to be populated.

Business Components