com.ibm.jtopenlite.command.program.journal
Class RetrieveJournalEntriesSelection
- java.lang.Object
-
- com.ibm.jtopenlite.command.program.journal.RetrieveJournalEntriesSelection
-
- All Implemented Interfaces:
- RetrieveJournalEntriesSelectionListener
public class RetrieveJournalEntriesSelection extends java.lang.Object implements RetrieveJournalEntriesSelectionListener
Sample implementation of RetrieveJournalEntriesSelectionListener. Note: This implementation does not check the validity of the input parameters. Refer to the API documentation (http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=%2Fapis%2FQJORJRNE.htm) for information about the parameters.
-
-
Constructor Summary
Constructors Constructor and Description RetrieveJournalEntriesSelection()
-
Method Summary
Methods Modifier and Type Method and Description void
addEntry(int key, byte[] value)
void
addEntry(int key, int value)
void
addEntry(int key, java.lang.String value)
int
getNumberOfVariableLengthRecords()
int
getVariableLengthRecordDataLength(int index)
int
getVariableLengthRecordKey(int index)
void
setVariableLengthRecordData(int index, byte[] buffer, int offset)
-
-
-
Method Detail
-
addEntry
public void addEntry(int key, int value)
-
addEntry
public void addEntry(int key, java.lang.String value)
-
addEntry
public void addEntry(int key, byte[] value)
-
getNumberOfVariableLengthRecords
public int getNumberOfVariableLengthRecords()
- Specified by:
getNumberOfVariableLengthRecords
in interfaceRetrieveJournalEntriesSelectionListener
-
getVariableLengthRecordKey
public int getVariableLengthRecordKey(int index)
- Specified by:
getVariableLengthRecordKey
in interfaceRetrieveJournalEntriesSelectionListener
-
getVariableLengthRecordDataLength
public int getVariableLengthRecordDataLength(int index)
- Specified by:
getVariableLengthRecordDataLength
in interfaceRetrieveJournalEntriesSelectionListener
-
setVariableLengthRecordData
public void setVariableLengthRecordData(int index, byte[] buffer, int offset)
- Specified by:
setVariableLengthRecordData
in interfaceRetrieveJournalEntriesSelectionListener
-
-