KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > portal > html > PortalProviderRenderer


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.portal.html;
6
7 import java.io.IOException JavaDoc ;
8 import java.util.ResourceBundle JavaDoc ;
9 import javax.faces.context.ResponseWriter ;
10 /**
11  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
12  * @since Jan 26, 2005
13  * @version $Id$
14  */

15 public interface PortalProviderRenderer {
16   public void renderTitle(ResponseWriter w, ResourceBundle JavaDoc res) throws IOException JavaDoc ;
17   public void renderMeta(ResponseWriter w, ResourceBundle JavaDoc res) throws IOException JavaDoc ;
18   public void renderLink(ResponseWriter w, ResourceBundle JavaDoc res) throws IOException JavaDoc ;
19   public void renderScript(ResponseWriter w, ResourceBundle JavaDoc res) throws IOException JavaDoc ;
20 }
21
Popular Tags