Skip to Content
0
Former Member
Sep 15, 2015 at 06:49 PM

How you change type of attribute

355 Views

below type of oldprice attribute is String now I want to change from Java.lang.String to Java.land.Double.

 <attributes>
     <attribute qualifier="oldPrice" type="java.lang.String" generate="true">
     </attribute>
 </attributes>


after changes.

 <attributes>
     <attribute qualifier="oldPrice" type="java.lang.Double" generate="true">
     </attribute>
 </attributes>


What is step for modify type from string to double.