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.event;6 7 import org.exoplatform.faces.core.component.UIExoComponent;8 /**9 * @author Tuan Nguyen (tuan08@users.sourceforge.net)10 * @since Dec 6, 200411 * @version $Id$12 */13 abstract public class UIComponentObserver {14 abstract public void onChange(UIExoComponent target) throws Exception ;15 }