KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > portlets > indexing > component > ShowListIndexerPluginActionListener


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.portlets.indexing.component;
6
7 import org.exoplatform.faces.core.component.UIExoCommand;
8 import org.exoplatform.faces.core.event.ExoActionEvent;
9 import org.exoplatform.faces.core.event.ExoActionListener;
10
11 /**
12  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
13  * @since Sep 14, 2004
14  * @version $Id: ShowListIndexerPluginActionListener.java,v 1.1 2004/09/16 02:48:43 tuan08 Exp $
15  */

16 public class ShowListIndexerPluginActionListener extends ExoActionListener {
17   public void execute(ExoActionEvent event) throws Exception JavaDoc {
18     UIExoCommand uiCommand = (UIExoCommand) event.getComponent() ;
19     uiCommand.setRenderedSibling(UIListIndexer.class) ;
20   }
21 }
Popular Tags