public interface Contents
| Modifier and Type | Method and Description |
|---|---|
void |
configTable(javax.swing.JTable table)
Configure the table view
|
int |
countAtPos(java.lang.String text,
int pos,
boolean caseSens)
Count for the given text at the record position specified pos.
|
int |
getCount()
Get the total number of record.
|
java.lang.String |
getErrOrLogType()
Get a type specification.
|
java.lang.String |
getRecord(int rec)
Get a record.
|
java.lang.String |
getStringPresentation(int rec)
Get a string presentation of the record specified by the index.
|
void |
release() |
int |
search(java.lang.String text,
int pos,
boolean down,
boolean caseSens)
Search for the given text from the record position specified pos.
|
int |
searchAtPos(java.lang.String text,
int pos,
boolean caseSens)
Search for the given text at the record position specified pos.
|
java.lang.String getRecord(int rec)
throws java.io.IOException
rec - the index of the record.java.io.IOExceptionvoid release()
throws java.io.IOException
java.io.IOExceptionint getCount()
void configTable(javax.swing.JTable table)
the - table to be configured.java.lang.String getStringPresentation(int rec)
index - the record index.java.lang.String getErrOrLogType()
int search(java.lang.String text,
int pos,
boolean down,
boolean caseSens)
throws java.io.IOException
text - The stringpos - the start positiondown - if true search in forward direction.caseSens - if true use a case insentive compare.java.io.IOExceptionint searchAtPos(java.lang.String text,
int pos,
boolean caseSens)
throws java.io.IOException
text - The stringpos - the start positioncaseSens - if true use a case insentive compare.java.io.IOExceptionint countAtPos(java.lang.String text,
int pos,
boolean caseSens)
throws java.io.IOException
text - The stringpos - the start positioncaseSens - if true use a case insentive compare.java.io.IOException