1
2
3
4
5 package org.rcfaces.core.internal.renderkit;
6
7
8
9
10
11
12 public abstract class AbstractComponentWriter implements IComponentWriter {
13 private static final String REVISION = "$Revision: 1.18 $";
14
15 private final IComponentRenderContext componentRenderContext;
16
17 protected AbstractComponentWriter(
18 IComponentRenderContext componentRenderContext) {
19 this.componentRenderContext = componentRenderContext;
20 }
21
22 public IComponentRenderContext getComponentRenderContext() {
23 return componentRenderContext;
24 }
25 }