Oracle Data-aware Controls Reference

oracle.dacf.control.swing.lov
Interface LOVDialog

All Known Implementing Classes:
DefaultLOVDialog

public interface LOVDialog

Interface to define the LOV dialog. LOV Dialog display can be customized by implementing this interface.

Version:
SDK

Method Summary
 java.lang.String getDataItemName()
          get the name of the data item currently in use
 java.lang.String getTitle()
          get title for the dialog
 void setDataItemName(java.lang.String dataItemName)
          set the data item name for the ScrollableRowset interface.
 void setFindItemModel(FindItemModel findItemModel)
          specify FindItemModel
 void setParent(LOVInterface lov)
          specify the LOVInterface which uses this dialog
 void setSelectionListener(LOVSelectionListener listener)
          add's a selection Listener
 void setSize(int w, int h)
          pass through to JDialog's setSize;
 void setTitle(java.lang.String title)
          set title for the dialog
 void show()
          display the dialog.
 void show(java.lang.Object intitalValue)
          display the dialog.
 

Method Detail

show

public void show()
display the dialog.

show

public void show(java.lang.Object intitalValue)
display the dialog.
Parameters:
initialValue - to be displayed

setTitle

public void setTitle(java.lang.String title)
set title for the dialog
Parameters:
title - for the dialog

getTitle

public java.lang.String getTitle()
get title for the dialog
Returns:
title for the dialog

setSize

public void setSize(int w,
                    int h)
pass through to JDialog's setSize;
Parameters:
w - width
h - height

setDataItemName

public void setDataItemName(java.lang.String dataItemName)
set the data item name for the ScrollableRowset interface. The LOV dialog should make use of the ScrollableRowsetAccess to display the data values.
Parameters:
dataItemName - name of the data item

getDataItemName

public java.lang.String getDataItemName()
get the name of the data item currently in use
Returns:
name of the data item currently in use

setParent

public void setParent(LOVInterface lov)
specify the LOVInterface which uses this dialog

setFindItemModel

public void setFindItemModel(FindItemModel findItemModel)
specify FindItemModel

setSelectionListener

public void setSelectionListener(LOVSelectionListener listener)
add's a selection Listener

Oracle Data-aware Controls Reference