KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
9  * Jul 11, 2004
10  * @author: Tuan Nguyen
11  * @email: tuan08@users.sourceforge.net
12  * @version: $Id: PortletCollection.java,v 1.1 2004/07/13 02:31:13 tuan08 Exp $
13  */

14 public class PortletCollection {
15     private List portletName = new ArrayList();
16
17     public List getPortletName() {
18         return portletName;
19     }
20
21     public void setPortletName(List portletName) {
22         this.portletName = portletName;
23     }
24
25     public void addPortletName(String JavaDoc name) {
26         this.portletName.add(name);
27     }
28 }
Popular Tags