KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > myfaces > config > impl > digester > elements > Renderer


1 /*
2  * Copyright 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.myfaces.config.impl.digester.elements;
17
18
19 /**
20  * @author <a HREF="mailto:oliver@rossmueller.com">Oliver Rossmueller</a>
21  */

22 public class Renderer implements org.apache.myfaces.config.element.Renderer
23 {
24
25     private String JavaDoc componentFamily;
26     private String JavaDoc rendererType;
27     private String JavaDoc rendererClass;
28
29
30     public String JavaDoc getComponentFamily()
31     {
32         return componentFamily;
33     }
34
35
36     public void setComponentFamily(String JavaDoc componentFamily)
37     {
38         this.componentFamily = componentFamily;
39     }
40
41
42     public String JavaDoc getRendererType()
43     {
44         return rendererType;
45     }
46
47
48     public void setRendererType(String JavaDoc rendererType)
49     {
50         this.rendererType = rendererType;
51     }
52
53
54     public String JavaDoc getRendererClass()
55     {
56         return rendererClass;
57     }
58
59
60     public void setRendererClass(String JavaDoc rendererClass)
61     {
62         this.rendererClass = rendererClass;
63     }
64
65
66 }
67
Popular Tags