Package org.eclipse.jst.tapestry.core.internal.tapestrylibraryregistry

Examples of org.eclipse.jst.tapestry.core.internal.tapestrylibraryregistry.TapestryVersion


     * @return the jsfVersion the dataType
     * <!-- end-user-doc -->
   * @generated
   */
  public TapestryVersion createTapestryVersionFromString(EDataType eDataType, String initialValue) {
    TapestryVersion result = TapestryVersion.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


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

TOP

Related Classes of org.eclipse.jst.tapestry.core.internal.tapestrylibraryregistry.TapestryVersion

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.