Package org.eclipse.jst.jsf.common.runtime.internal.model.decorator

Examples of org.eclipse.jst.jsf.common.runtime.internal.model.decorator.ValidatorTypeInfo


        if (classTypeInfo.getClassName()==null && classTypeInfo.getValidatorId() == null)
        {
            return ValidatorTypeInfo.UNKNOWN;
        }

        return new ValidatorTypeInfo(classTypeInfo.getClassName(),
                superClasses, interfaces, classTypeInfo.getValidatorId());
    }
View Full Code Here


                }
                // TODO: else validate problem
            }
            else if (tagElement instanceof IValidatorTagElement)
            {
                final ValidatorTypeInfo typeInfo = ((IValidatorTagElement) tagElement)
                        .getValidator();
                ComponentInfo parent = _constructionData.getParent();
                parent = findFirstParent(
                        ComponentFactory.INTERFACE_EDITABLEVALUEHOLDER, parent);
                if (parent != null)
View Full Code Here

     * @return a new validator type info for the validator id
     */
    public static ValidatorTypeInfo getValidator(final String validatorId,
            final String validatorClass)
    {
        return new ValidatorTypeInfo(validatorClass, validatorId);
    }
View Full Code Here

            final String validatorClass = DTComponentIntrospector
                    .findValidatorClass(validatorId, project);

            if (validatorClass != null && !"".equals(validatorClass.trim())) //$NON-NLS-1$
            {
                final ValidatorTypeInfo typeInfo = DTComponentIntrospector
                        .getValidator(validatorId, validatorClass);
                final TLDValidatorTagElement tagElement = new TLDValidatorTagElement(
                        tldDecl, typeInfo, new NullAttributeAdvisor());
                return tagElement;
            }
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsf.common.runtime.internal.model.decorator.ValidatorTypeInfo

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.