KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > impl > config > CustomWindowState


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.impl.config;
6
7 import java.util.ArrayList JavaDoc;
8 import java.util.List JavaDoc;
9
10 /**
11  * Jul 7, 2004
12  * @author: Tuan Nguyen
13  * @email: tuan08@users.sourceforge.net
14  * @version: $Id: CustomWindowState.java,v 1.1 2004/07/08 19:11:45 tuan08 Exp $
15  */

16 public class CustomWindowState {
17     private String JavaDoc name ;
18     private List JavaDoc description ;
19     
20   public CustomWindowState() {
21     description = new ArrayList JavaDoc() ;
22   }
23   
24     public List JavaDoc getDescription() {
25         return description;
26     }
27     
28     public void setDescription(List JavaDoc descrition) {
29         this.description = descrition;
30     }
31     
32     public void addDescription(Description desc ) {
33         description.add(desc) ;
34     }
35     
36     public String JavaDoc getName() {
37         return name;
38     }
39     public void setName(String JavaDoc name) {
40         this.name = name;
41     }
42 }
43
Popular Tags