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.faces.core.component.model;6 7 /**8 * Jun 30, 2004 9 * @author: Tuan Nguyen10 * @email: tuan08@users.sourceforge.net11 * @version: $Id: DataHandler.java,v 1.2 2004/07/01 14:20:50 tuan08 Exp $12 */13 public interface DataHandler {14 public void begin() ;15 public void end() ;16 public boolean nextRow() ;17 18 public void setCurrentObject(Object o) ;19 public String getData(String fieldName) ; 20 }