Package org.apache.tapestry

Examples of org.apache.tapestry.EnumValueEncoder


        if (valueType == null)
            return null;

        if (Enum.class.isAssignableFrom(valueType))
            return new EnumValueEncoder(valueType);

        return null;
    }
View Full Code Here


    /** Provide a value encoder for an enum type. */
    @SuppressWarnings("unchecked")
    public ValueEncoder getValueEncoderForProperty()
    {
        return new EnumValueEncoder(_propertyEditModel.getPropertyType());
    }
View Full Code Here

TOP

Related Classes of org.apache.tapestry.EnumValueEncoder

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.