Package org.openxava.formatters
Class ImageFormatter
- java.lang.Object
-
- org.openxava.formatters.ImageFormatter
-
- All Implemented Interfaces:
IFormatter
public class ImageFormatter extends java.lang.Object implements IFormatter
- Author:
- Javier Paniza, Franklin Alier
-
-
Constructor Summary
Constructors Constructor Description ImageFormatter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
format(javax.servlet.http.HttpServletRequest request, java.lang.Object object)
From a object return aString
to render in HTML.java.lang.Object
parse(javax.servlet.http.HttpServletRequest request, java.lang.String string)
From aString
obtained from a HTTP request return a java object.
-
-
-
Method Detail
-
format
public java.lang.String format(javax.servlet.http.HttpServletRequest request, java.lang.Object object)
Description copied from interface:IFormatter
From a object return aString
to render in HTML.- Specified by:
format
in interfaceIFormatter
-
parse
public java.lang.Object parse(javax.servlet.http.HttpServletRequest request, java.lang.String string) throws java.text.ParseException
Description copied from interface:IFormatter
From aString
obtained from a HTTP request return a java object.- Specified by:
parse
in interfaceIFormatter
- Throws:
java.text.ParseException
-
-