|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Defines Java callbacks to handle a collection of MARC records.
Method Summary | |
void |
controlField(String tag,
char[] data)
Receives notification of a control field. |
void |
endCollection()
Receives notification at the end of the collection. |
void |
endDataField(String tag)
Receives notification at the end of each data field |
void |
endRecord()
Receives notification at the end of each record. |
void |
startCollection()
Receives notification at the start of the collection. |
void |
startDataField(String tag,
char ind1,
char ind2)
Receives notification at the start of each data field. |
void |
startRecord(Leader leader)
Receives notification at the start of each record. |
void |
subfield(char code,
char[] data)
Receives notification of a data element (subfield). |
Method Detail |
public void startCollection()
Receives notification at the start of the collection.
public void endCollection()
Receives notification at the end of the collection.
public void startRecord(Leader leader)
Receives notification at the start of each record.
leader
- the Leader
object containing the record labelpublic void endRecord()
Receives notification at the end of each record.
public void controlField(String tag, char[] data)
Receives notification of a control field.
tag
- the tag namedata
- the control field datapublic void startDataField(String tag, char ind1, char ind2)
Receives notification at the start of each data field.
tag
- the tag nameind1
- the first indicator valueind2
- the second indicator valuepublic void endDataField(String tag)
Receives notification at the end of each data field
tag
- the tag namepublic void subfield(char code, char[] data)
Receives notification of a data element (subfield).
code
- the data element identifierdata
- the data element
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |