Package org.eclipse.jst.tapestry.core

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


     * @return the jsf version of the project if it is valid JSF faceted
     * project or null otherwise.
     */
    public TapestryUtils create(final IProject project)
    {
        final TapestryVersion jsfVersion = TapestryVersion.valueOfProject(project);
        if (jsfVersion != null)
        {
            return create(jsfVersion, ModelProviderManager.getModelProvider(project));
        }
        return null;
View Full Code Here


     * @throw {@link IllegalArgumentException} if version is not related
     * to a JSF facet.
     */
    public TapestryUtils create(final IProjectFacetVersion version, final IModelProvider modelProvider)
    {
        final TapestryVersion jsfVersion = TapestryVersion.valueOfFacetVersion(version);
        if (jsfVersion != null)
        {
            return create(jsfVersion, modelProvider);
        }
        return null;
View Full Code Here

TOP

Related Classes of org.eclipse.jst.tapestry.core.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.