com.ibm.notes.java.ui.views
Interface NotesUIViewEntry

All Superinterfaces:
IAdaptable
All Known Subinterfaces:
NotesUICategoryEntry, NotesUIDocumentEntry, NotesUITotalEntry

public interface NotesUIViewEntry
extends IAdaptable

Represents a single row entry from a Notes view.

Restriction:
This interface is not intended to be implemented by clients.

Method Summary
 List getColumnValues()
          Gets a list of the column values for this view entry.
 String getColumnValueString(int index)
          Gets the value of a specific column as a String.
 NotesViewData getViewData()
          Gets the NotesViewData for the NotesUIView in which this view entry resides.
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 

Method Detail

getColumnValues

List getColumnValues()
Gets a list of the column values for this view entry.

Returns:
a list of column values for this view entry
Since:
8.5.2

getColumnValueString

String getColumnValueString(int index)
Gets the value of a specific column as a String.

Parameters:
index - the index of the column to get the value from
Returns:
the value of the column specified by the index represented as a String
Since:
8.5.2

getViewData

NotesViewData getViewData()
Gets the NotesViewData for the NotesUIView in which this view entry resides. NOTE: For the most complete view data, use NotesUIView.getViewData()

Returns:
the view data for the view in which this view entry resides
Since:
8.5.2