KickJava   Java API By Example, From Geeks To Geeks.

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


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

13 public class Global {
14     private String JavaDoc name ;
15     private String JavaDoc description ;
16     private int majorVersion ;
17     private int minorVersion ;
18     
19     public String JavaDoc getDescription() {
20         return description;
21     }
22     
23     public void setDescription(String JavaDoc description) {
24         this.description = description;
25     }
26     
27     public int getMajorVersion() {
28         return majorVersion;
29     }
30     
31     public void setMajorVersion(int majorVersion) {
32         this.majorVersion = majorVersion;
33     }
34     
35     public int getMinorVersion() {
36         return minorVersion;
37     }
38     
39     public void setMinorVersion(int minorVersion) {
40         this.minorVersion = minorVersion;
41     }
42     
43     public String JavaDoc getName() {
44         return name;
45     }
46     public void setName(String JavaDoc name) {
47         this.name = name;
48     }
49 }
50
Popular Tags