2009/05/20 - Apache Shale has been retired.

For more information, please explore the Attic.

View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to you under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  
18  /*
19   * $Id: OutputLabelBuilder.java 464373 2006-10-16 04:21:54Z rahul $
20   */
21  package org.apache.shale.clay.parser.builder;
22  
23  import org.apache.shale.clay.parser.Node;
24  
25  
26  /***
27   * <p>This {@link Builder} will create a
28   * {@link org.apache.shale.clay.config.beans.ElementBean} representing a
29   * <code>javax.faces.HtmlOutputLabel</code> JSF component. The mapping of the
30   * {@link Node} representing a html input element having a "text" type attribute
31   * is handled by the
32   * {@link org.apache.shale.clay.parser.builder.chain.InputBuilderRule}.
33   * </p>
34   */
35  public class OutputLabelBuilder extends Builder {
36  
37  
38  
39      /***
40       * <p>
41       * Returns the <code>jsfid</code> associated with the {@link ElementBean}
42       * being build.
43       * </p>
44       *
45       * @param node markup
46       * @return jsfid
47       */
48      protected String getJsfid(Node node) {
49          return "outputLabel";
50      }
51  
52      /***
53       * <p>
54       * Returns the JSF component type of
55       * <code>javax.faces.HtmlOutputLabel</code> that will populate the
56       * {@link ElementBean} being created.
57       * </p>
58       *
59       * @param node markup
60       * @return component type
61       */
62      protected String getComponentType(Node node) {
63          return "javax.faces.HtmlOutputLabel";
64      }
65  
66      /***
67       * <p>
68       * Returns a boolean value that will indicate if the target JSF component
69       * will support children.
70       * </p>
71       *
72       * @return <code>true</code>
73       */
74      public boolean isChildrenAllowed() {
75          return true;
76      }
77  
78  }