Package org.eclipse.jst.jsf.core.internal.jsflibraryregistry

Examples of org.eclipse.jst.jsf.core.internal.jsflibraryregistry.JSFVersion


   * @param newJSFVersion
   * <!-- end-user-doc -->
   * @generated
   */
  public void setJSFVersion(JSFVersion newJSFVersion) {
    JSFVersion oldJSFVersion = jsfVersion;
    jsfVersion = newJSFVersion == null ? JSF_VERSION_EDEFAULT : newJSFVersion;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, JSFLibraryRegistryPackage.JSF_LIBRARY__JSF_VERSION, oldJSFVersion, jsfVersion));
  }
View Full Code Here


     * @return the jsfVersion the dataType
     * <!-- end-user-doc -->
   * @generated
   */
  public JSFVersion createJSFVersionFromString(EDataType eDataType, String initialValue) {
    JSFVersion result = JSFVersion.get(initialValue);
    if (result == null) throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
    return result;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsf.core.internal.jsflibraryregistry.JSFVersion

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.