KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > jetspeed > util > types > MetaInfo


1 /*
2  * Copyright 2000-2001,2004 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
17 package org.apache.jetspeed.util.types;
18
19
20 /**
21
22 Autogenerated JavaBean from xjay (http://relativity.yi.org/xjay)
23
24 @author XJay
25 @version $Id: MetaInfo.java,v 1.4 2004/02/23 03:17:30 jford Exp $
26 */

27
28
29 public class MetaInfo {
30
31     
32
33     //BEGIN members
34

35     private String JavaDoc _title;
36      
37     private String JavaDoc _description;
38      
39     private String JavaDoc _image;
40     
41     //END members
42

43     //BEGIN methods
44

45     public String JavaDoc getTitle() {
46         return this._title;
47     }
48                         
49         
50     public void setTitle ( String JavaDoc _title ) {
51         this._title = _title;
52     }
53     
54     public String JavaDoc getDescription() {
55         return this._description;
56     }
57                         
58         
59     public void setDescription ( String JavaDoc _description ) {
60         this._description = _description;
61     }
62     
63     public String JavaDoc getImage() {
64         return this._image;
65     }
66                         
67         
68     public void setImage ( String JavaDoc _image ) {
69         this._image = _image;
70     }
71     
72     //END methods
73
}
Popular Tags