Interface TextValueHandler
-
public interface TextValueHandler
- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(BooleanTextValue textValue)
void
handle(DateTextValue textValue)
void
handle(NumberTextValue textValue)
void
handle(StringTextValue textValue)
-
-
-
Method Detail
-
handle
void handle(StringTextValue textValue) throws JRException
- Throws:
JRException
-
handle
void handle(NumberTextValue textValue) throws JRException
- Throws:
JRException
-
handle
void handle(DateTextValue textValue) throws JRException
- Throws:
JRException
-
handle
void handle(BooleanTextValue textValue) throws JRException
- Throws:
JRException
-
-