Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
SimpleNodeRenderFactory |
|
| 1.0;1 |
1 | // Copyright 2004, 2005 The Apache Software Foundation | |
2 | // | |
3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
4 | // you may not use this file except in compliance with the License. | |
5 | // You may obtain a copy of the License at | |
6 | // | |
7 | // http://www.apache.org/licenses/LICENSE-2.0 | |
8 | // | |
9 | // Unless required by applicable law or agreed to in writing, software | |
10 | // distributed under the License is distributed on an "AS IS" BASIS, | |
11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 | // See the License for the specific language governing permissions and | |
13 | // limitations under the License. | |
14 | ||
15 | package org.apache.tapestry.contrib.tree.simple; | |
16 | ||
17 | import org.apache.tapestry.IRender; | |
18 | import org.apache.tapestry.IRequestCycle; | |
19 | import org.apache.tapestry.contrib.tree.components.INodeRenderFactory; | |
20 | import org.apache.tapestry.contrib.tree.model.ITreeModelSource; | |
21 | import org.apache.tapestry.valid.RenderString; | |
22 | ||
23 | /** | |
24 | * @author ceco | |
25 | */ | |
26 | public class SimpleNodeRenderFactory implements INodeRenderFactory | |
27 | { | |
28 | ||
29 | /** | |
30 | * Constructor for SimpleNodeRenderFactory. | |
31 | */ | |
32 | public SimpleNodeRenderFactory() | |
33 | { | |
34 | 0 | super(); |
35 | 0 | } |
36 | ||
37 | /** | |
38 | * @see INodeRenderFactory#getRender | |
39 | */ | |
40 | public IRender getRenderByID(Object objUniqueKey, | |
41 | ITreeModelSource objTreeModelSource, IRequestCycle cycle) | |
42 | { | |
43 | 0 | Object objValue = objTreeModelSource.getTreeModel().getTreeDataModel() |
44 | .getObject(objUniqueKey); | |
45 | 0 | return getRender(objValue, objTreeModelSource, cycle); |
46 | } | |
47 | ||
48 | /** | |
49 | * @see INodeRenderFactory#getRender | |
50 | */ | |
51 | public IRender getRender(Object objValue, | |
52 | ITreeModelSource objTreeModelSource, IRequestCycle objCycle) | |
53 | { | |
54 | 0 | return new RenderString(objValue.toString()); |
55 | } | |
56 | ||
57 | } |