KickJava   Java API By Example, From Geeks To Geeks.

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


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: InitParam.java,v 1.1 2004/07/13 02:31:13 tuan08 Exp $
13  */

14 public class InitParam {
15     private List description;
16     private String JavaDoc name;
17     private String JavaDoc value;
18
19     public InitParam() {
20         description = new ArrayList();
21     }
22
23     public List getDescription() {
24         return description;
25     }
26
27     public void setDescription(List description) {
28         this.description = description;
29     }
30
31     public void addDescription(Description desc) {
32         this.description.add(desc);
33     }
34
35     public String JavaDoc getName() {
36         return name;
37     }
38
39     public void setName(String JavaDoc name) {
40         this.name = name;
41     }
42
43     public String JavaDoc getValue() {
44         return value;
45     }
46
47     public void setValue(String JavaDoc value) {
48         this.value = value;
49     }
50 }
Popular Tags