View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.myfaces.view.facelets.pss.acid.component;
20  
21  import java.util.HashMap;
22  import java.util.Map;
23  import javax.faces.component.FacesComponent;
24  import javax.faces.component.UIComponent;
25  import javax.faces.component.UIComponentBase;
26  import javax.faces.component.UIViewRoot;
27  import javax.faces.component.html.HtmlOutputText;
28  import javax.faces.context.FacesContext;
29  import javax.faces.event.AbortProcessingException;
30  import javax.faces.event.PreRenderViewEvent;
31  import javax.faces.event.SystemEvent;
32  import javax.faces.event.SystemEventListener;
33  import javax.faces.view.ViewDeclarationLanguage;
34  
35  @FacesComponent(value = "com.myapp.UIAddSimpleComponentVDL")
36  public class UIAddSimpleComponentVDL extends UIComponentBase implements
37          SystemEventListener
38  {
39  
40      //
41      // Constructor
42      //
43  
44      public UIAddSimpleComponentVDL()
45      {
46          setRendererType(null);
47  
48          FacesContext context = FacesContext.getCurrentInstance();
49          UIViewRoot root = context.getViewRoot();
50  
51          root.subscribeToViewEvent(PreRenderViewEvent.class, this);
52      }
53  
54      //
55      // Public methods
56      //
57  
58      @Override
59      public String getFamily()
60      {
61  
62          return "com.myapp";
63      }
64  
65      public boolean isListenerForSource(Object source)
66      {
67  
68          return (source instanceof UIViewRoot);
69      }
70  
71      public void processEvent(SystemEvent event) throws AbortProcessingException
72      {
73          FacesContext facesContext = FacesContext.getCurrentInstance();
74          if (!facesContext.isPostback())
75          {
76              ViewDeclarationLanguage vdl = facesContext.getApplication().
77                  getViewHandler().getViewDeclarationLanguage(
78                      facesContext, facesContext.getViewRoot().getViewId());
79              
80              Map<String, Object> attributes = new HashMap<String, Object>();
81              attributes.put("value", "Dynamically added child");
82              
83              UIComponent component = vdl.createComponent(facesContext, 
84                  "http://java.sun.com/jsf/html", 
85                  "outputText", attributes);
86              getChildren().add(component);
87          }
88      }
89  }