Package com.dyuproject.protostuff.model

Examples of com.dyuproject.protostuff.model.ParamType


        protected final InlineValue<?> _inlineValue;
       
        public InlineField(PropertyMeta propertyMeta)
        {
            super(propertyMeta);
            ParamType type = _messagePropertyAccessor.getParamType();
            _inlineValue = type.isPrimitive() ? InlineValue.getPrimitive(type.getJavaType()) :
                InlineValue.EnumValue.create(_messagePropertyAccessor.getTypeClass());
        }
View Full Code Here


        protected final InlineValue<?> _inlineValue;

        public RepeatedInlineField(PropertyMeta propertyMeta)
        {
            super(propertyMeta);
            ParamType type = _messagePropertyAccessor.getParamType();
            _inlineValue = type.isPrimitive() ? InlineValue.getPrimitive(type.getJavaType()) :
                InlineValue.EnumValue.create(_messagePropertyAccessor.getTypeClass());
        }
View Full Code Here

TOP

Related Classes of com.dyuproject.protostuff.model.ParamType

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.