|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
V - The tabular value being built.public interface TabularBuilderIfc<V>
A builder of tabular data. Called when fields and records are to be built.
Modifications:
$Date: 2008-12-02 12:32:45 -0500 (Tue, 02 Dec 2008) $
$Revision: 479 $
$Author: sfloess $
$HeadURL: https://jplate.svn.sourceforge.net/svnroot/jplate/trunk/src/dev/java/org/jplate/tabular/parser/TabularBuilderIfc.java $
| Method Summary | |
|---|---|
void |
buildField(java.lang.String field,
int line,
int column)
This method is called when a field is encountered. |
void |
buildOmittedField(int line,
int column)
This method is called when a field is omitted. |
void |
buildRecord(int line)
This method is called when a record is to be built. |
| Methods inherited from interface org.jplate.foundation.parser.JPlateBuilderIfc |
|---|
buildEnd, buildStart |
| Methods inherited from interface org.jplate.foundation.gof.builder.BuilderIfc |
|---|
getResult, reset |
| Method Detail |
|---|
void buildRecord(int line)
throws JPlateBuildingException
line - The line number where the record was found.
JPlateBuildingException - If there is a problem building the record.
void buildField(java.lang.String field,
int line,
int column)
throws JPlateBuildingException
field - The data in the field.line - The line where field starts.column - The column number where field starts.
JPlateBuildingException - If there is a problem building the field.
void buildOmittedField(int line,
int column)
throws JPlateBuildingException
line - represents the line where the omitted field starts.column - represents the column where the omitted field starts.
JPlateBuildingException - if there is a problem building the omitted
field.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||