1
2
3
4
5 package org.rcfaces.core.internal.renderkit;
6
7 import javax.faces.component.UIComponent;
8 import javax.faces.context.FacesContext;
9
10
11
12
13
14 public interface IComponentRenderContext {
15 FacesContext getFacesContext();
16
17 IRenderContext getRenderContext();
18
19 UIComponent getComponent();
20
21 String getComponentClientId();
22
23 boolean containsAttribute(String key);
24
25 Object getAttribute(String key);
26
27 Object setAttribute(String key, Object value);
28
29 Object removeAttribute(String key);
30
31 boolean isComponentVisible();
32 }