KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > portal > faces > tags > MobilePageTag


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.faces.tags;
6
7 import javax.faces.webapp.UIComponentTag;
8 import org.exoplatform.portal.faces.component.UIMobilePage;
9
10 /**
11  * Date: Jun 30, 2004
12  * @author : MORON Fran�ois
13  * @email: francois.moron@rd.francetelecom.com
14  *
15  */

16 public class MobilePageTag extends UIComponentTag {
17
18   public String JavaDoc getComponentType() { return "UIMobilePage" ; }
19
20   public String JavaDoc getRendererType() {
21     return UIMobilePage.DEFAULT_RENDERER_TYPE;
22   }
23 }
24
Popular Tags