org.jplate.kvp.parser
Interface KvpBuilderIfc<V>

Type Parameters:
V - The KVP value type to build.
All Superinterfaces:
BuilderIfc<V>, JPlateBuilderIfc<V>
All Known Subinterfaces:
KvpListBuilderIfc<V>, KvpMapBuilderIfc
All Known Implementing Classes:
DefaultKvpListBuilder, DefaultKvpMapBuilder

public interface KvpBuilderIfc<V>
extends JPlateBuilderIfc<V>

A builder called when KVP (key value pair) tokens have been parsed.

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/kvp/parser/KvpBuilderIfc.java $
    


Method Summary
 void buildKeyValuePair(KvpParseContextIfc parseContext)
          This method is called when key / value pairs have been parsed.
 
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

buildKeyValuePair

void buildKeyValuePair(KvpParseContextIfc parseContext)
                       throws JPlateBuildingException
This method is called when key / value pairs have been parsed.

Parameters:
parseContext - contains data about the parsed key/value pair.
Throws:
JPlateBuildingException - If there is a problem building the key / value pair.