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 javax.faces.convert;
20  
21  import javax.faces.component.UIComponent;
22  import javax.faces.context.FacesContext;
23  
24  import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFConverter;
25  
26  /**
27   * see Javadoc of <a href="http://java.sun.com/javaee/javaserverfaces/1.2/docs/api/index.html">JSF Specification</a>
28   *
29   * @author Thomas Spiegl (latest modification by $Author: lu4242 $)
30   * @version $Revision: 693358 $ $Date: 2008-09-08 22:54:29 -0500 (Mon, 08 Sep 2008) $
31   */
32  @JSFConverter
33  public class IntegerConverter
34          implements Converter
35  {
36      // FIELDS
37      public static final String CONVERTER_ID = "javax.faces.Integer";
38      public static final String STRING_ID = "javax.faces.converter.STRING";
39      public static final String INTEGER_ID = "javax.faces.converter.IntegerConverter.INTEGER";
40  
41      // CONSTRUCTORS
42      public IntegerConverter()
43      {
44      }
45  
46      // METHODS
47      public Object getAsObject(FacesContext facesContext, UIComponent uiComponent, String value)
48      {
49          if (facesContext == null) throw new NullPointerException("facesContext");
50          if (uiComponent == null) throw new NullPointerException("uiComponent");
51  
52          if (value != null)
53          {
54              value = value.trim();
55              if (value.length() > 0)
56              {
57                  try
58                  {
59                      return Integer.valueOf(value);
60                  }
61                  catch (NumberFormatException e)
62                  {
63                      throw new ConverterException(_MessageUtils.getErrorMessage(facesContext,
64                                                                                 INTEGER_ID,
65                                                                                 new Object[]{value,"21",_MessageUtils.getLabel(facesContext, uiComponent)}), e);
66                  }
67              }
68          }
69          return null;
70      }
71  
72      public String getAsString(FacesContext facesContext, UIComponent uiComponent, Object value)
73      {
74          if (facesContext == null) throw new NullPointerException("facesContext");
75          if (uiComponent == null) throw new NullPointerException("uiComponent");
76  
77          if (value == null)
78          {
79              return "";
80          }
81          if (value instanceof String)
82          {
83              return (String)value;
84          }
85          try
86          {
87              return Integer.toString(((Number)value).intValue());
88          }
89          catch (Exception e)
90          {
91              throw new ConverterException(_MessageUtils.getErrorMessage(facesContext, STRING_ID, new Object[]{value,_MessageUtils.getLabel(facesContext, uiComponent)}),e);
92          }
93      }
94  }