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.tag.ui;
20  
21  import org.apache.myfaces.view.facelets.component.UIRepeat;
22  import org.apache.myfaces.view.facelets.tag.AbstractTagLibrary;
23  
24  /**
25   * NOTE: This implementation is provided for compatibility reasons and
26   * it is considered faulty. It is enabled using
27   * org.apache.myfaces.STRICT_JSF_2_FACELETS_COMPATIBILITY web config param.
28   * Don't use it if EL expression caching is enabled.
29   * 
30   * @author Jacob Hookom
31   * @version $Id$
32   */
33  public final class UILibrary extends AbstractTagLibrary
34  {
35  
36      public final static String NAMESPACE = "http://xmlns.jcp.org/jsf/facelets";
37      public final static String ALIAS_NAMESPACE = "http://java.sun.com/jsf/facelets";
38  
39      public final static UILibrary INSTANCE = new UILibrary();
40  
41      public UILibrary()
42      {
43          super(NAMESPACE, ALIAS_NAMESPACE);
44  
45          this.addTagHandler("include", IncludeHandler.class);
46  
47          this.addTagHandler("composition", CompositionHandler.class);
48  
49          this.addComponent("component", ComponentRef.COMPONENT_TYPE, null, ComponentRefHandler.class);
50  
51          this.addComponent("fragment", ComponentRef.COMPONENT_TYPE, null, ComponentRefHandler.class);
52  
53          this.addTagHandler("define", DefineHandler.class);
54  
55          this.addTagHandler("insert", InsertHandler.class);
56  
57          this.addTagHandler("param", ParamHandler.class);
58  
59          this.addTagHandler("decorate", DecorateHandler.class);
60  
61          this.addComponent("repeat", UIRepeat.COMPONENT_TYPE, null, RepeatHandler.class);
62  
63          this.addComponent("debug", UIDebug.COMPONENT_TYPE, null);
64      }
65  }