KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > portal > tools > PortalToolCatalogue


1 /*
2  * Copyright 1999-2005 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.cocoon.portal.tools;
17
18 /**
19  * Represents a i18n Catalogue for a tool
20  *
21  * @version CVS $Id: PortalToolCatalogue.java 148910 2005-01-28 18:19:44Z cziegeler $
22  */

23 public class PortalToolCatalogue {
24     
25     private String JavaDoc id = "";
26     private String JavaDoc name = "";
27     private String JavaDoc location = "";
28
29     /**
30      * @return
31      */

32     public String JavaDoc getId() {
33         return id;
34     }
35
36     /**
37      * @param id
38      */

39     public void setId(String JavaDoc id) {
40         this.id = id;
41     }
42
43     /**
44      * @return
45      */

46     public String JavaDoc getLocation() {
47         return location;
48     }
49
50     /**
51      * @param location
52      */

53     public void setLocation(String JavaDoc location) {
54         this.location = location;
55     }
56
57     /**
58      * @return
59      */

60     public String JavaDoc getName() {
61         return name;
62     }
63
64     /**
65      * @param name
66      */

67     public void setName(String JavaDoc name) {
68         this.name = name;
69     }
70 }
71
Popular Tags