KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > portlets > content > display > component > UIStaticContentPortlet


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.content.display.component;
6
7 import org.exoplatform.portlets.content.display.component.model.ContentConfig;
8
9 /**
10  * @author benjaminmestrallet
11  */

12 public class UIStaticContentPortlet extends UIContentPortlet {
13   
14   public UIStaticContentPortlet() throws Exception JavaDoc {
15     super();
16   }
17   
18   protected UIContentTab createUIContentTab(ContentConfig contentConfig) throws Exception JavaDoc{
19     return new UIStaticContentTab(contentConfig);
20   }
21   
22 }
23
Popular Tags