1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag;
21
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24 import org.apache.myfaces.tobago.renderkit.LayoutComponentRendererBase;
25
26 import javax.faces.component.UIComponent;
27 import javax.faces.context.FacesContext;
28 import java.io.IOException;
29
30 public class SubviewRenderer extends LayoutComponentRendererBase {
31
32 private static final Logger LOG = LoggerFactory.getLogger(SubviewRenderer.class);
33
34 public void encodeBegin(FacesContext facesContext, UIComponent component)
35 throws IOException {
36 if (LOG.isInfoEnabled()) {
37 LOG.info("SSSSSSSSSSSSSSSSSSS Subview component = " + component.getClass().getName());
38 }
39 super.encodeBegin(facesContext, component);
40 }
41
42 public void encodeEnd(FacesContext facesContext,
43 UIComponent component) throws IOException {
44
45 }
46
47 }
48