Package org.eclipse.jst.jsf.facesconfig.emf

Examples of org.eclipse.jst.jsf.facesconfig.emf.ConverterIdType


   * @return {@link ConverterType} instance.
   */
  protected ConverterType createConverter(String name) {
    ConverterType converterType = FacesConfigFactory.eINSTANCE.createConverterType();
    //set converter-id
    ConverterIdType converterIdType = FacesConfigFactory.eINSTANCE.createConverterIdType();
    StringBuffer sb = new StringBuffer();
    sb.append("javax.faces."); //$NON-NLS-1$
    sb.append(name);
    converterIdType.setTextContent(sb.toString());
    converterType.setConverterId(converterIdType);
    //set converter-class
    ConverterClassType converterClassType = FacesConfigFactory.eINSTANCE.createConverterClassType();
    sb = new StringBuffer();
    sb.append("javax.faces.convert."); //$NON-NLS-1$
View Full Code Here


   * @return {@link ConverterType} instance.
   */
  protected ConverterType createConverter(String name) {
    ConverterType converterType = FacesConfigFactory.eINSTANCE.createConverterType();
    //set converter-id
    ConverterIdType converterIdType = FacesConfigFactory.eINSTANCE.createConverterIdType();
    StringBuffer sb = new StringBuffer();
    sb.append("javax.faces."); //$NON-NLS-1$
    sb.append(name);
    converterIdType.setTextContent(sb.toString());
    converterType.setConverterId(converterIdType);
    //set converter-class
    ConverterClassType converterClassType = FacesConfigFactory.eINSTANCE.createConverterClassType();
    sb = new StringBuffer();
    sb.append("javax.faces.convert."); //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsf.facesconfig.emf.ConverterIdType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.