View Javadoc

1   /*
2    * $Id: LiteralTwoDigitYearConverter.java,v 1.1 2007/01/05 17:09:51 oeuillot Exp $
3    * 
4    */
5   package org.rcfaces.core.internal.converter;
6   
7   import javax.faces.convert.Converter;
8   
9   /**
10   * 
11   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12   * @version $Revision: 1.1 $ $Date: 2007/01/05 17:09:51 $
13   */
14  public class LiteralTwoDigitYearConverter extends TwoDigitYearConverter {
15      private static final String REVISION = "$Revision: 1.1 $";
16  
17      public static final Converter SINGLETON = new LiteralTwoDigitYearConverter();
18  
19      protected boolean isLiteral() {
20          return true;
21      }
22  }