KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > text > template > DataHandler


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.text.template;
6
7 /**
8  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
9  * @since Feb 1, 2005
10  * @version $Id$
11  */

12 public interface DataHandler {
13   public Class JavaDoc getDataTypeHandler() ;
14   public String JavaDoc getValueAsString(DataBindingValue value) ;
15   public Object JavaDoc getValue(DataBindingValue value) ;
16 }
17
Popular Tags