KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > portal > layout > SkinDescription


1 /*
2  * Copyright 1999-2002,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 package org.apache.cocoon.portal.layout;
17
18 /**
19 *
20 * @version CVS $Id: Parameters.java 30932 2004-07-29 17:35:38Z vgritsenko $
21 */

22 public class SkinDescription {
23
24     protected String JavaDoc name;
25     protected String JavaDoc basePath;
26     protected String JavaDoc thumbnailPath;
27     
28     
29     /**
30      * @return Returns the basePath.
31      */

32     public String JavaDoc getBasePath() {
33         return basePath;
34     }
35     /**
36      * @param basePath The basePath to set.
37      */

38     public void setBasePath(String JavaDoc basePath) {
39         this.basePath = basePath;
40     }
41     /**
42      * @return Returns the name.
43      */

44     public String JavaDoc getName() {
45         return name;
46     }
47     /**
48      * @param name The name to set.
49      */

50     public void setName(String JavaDoc name) {
51         this.name = name;
52     }
53     /**
54      * @return Returns the thumbnailPath.
55      */

56     public String JavaDoc getThumbnailPath() {
57         return thumbnailPath;
58     }
59     /**
60      * @param thumbnailPath The thumbnailPath to set.
61      */

62     public void setThumbnailPath(String JavaDoc thumbnailPath) {
63         this.thumbnailPath = thumbnailPath;
64     }
65 }
Popular Tags