KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > pci > model > CustomPortletMode


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.services.portletcontainer.pci.model;
6
7 import java.util.*;
8 import org.exoplatform.Constants;
9
10 /**
11  * Jul 11, 2004
12  * @author: Tuan Nguyen
13  * @email: tuan08@users.sourceforge.net
14  * @version: $Id: CustomPortletMode.java,v 1.1 2004/07/13 02:31:13 tuan08 Exp $
15  */

16 public class CustomPortletMode {
17     private List description ;
18   private String JavaDoc portletMode ;
19   
20     public List getDescription() {
21     if(description == null) return Constants.EMPTY_LIST ;
22         return description;
23     }
24     public void setDescription(List description) {
25         this.description = description;
26     }
27   
28   public void addDescription(Description desc) {
29     if(description == null) description = new ArrayList() ;
30     this.description.add(desc) ;
31   }
32   
33     public String JavaDoc getPortletMode() {
34         return portletMode;
35     }
36   
37     public void setPortletMode(String JavaDoc portletMode) {
38         this.portletMode = portletMode;
39     }
40 }
Popular Tags