首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > 其他 > for GWT的序列化程序注释

for GWT的序列化程序注释

  • 资源大小:37.35 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: 程序 注释 序列化

资 源 简 介

Welcome Annotation to generate CustomFieldSerializer classes with specific serialization requirements may take advantage of custom field serializers. @GenSerializer Annotation use: ``` @GenSerializer public class CategoryItem { List productKey; int quantity; /** setter and getter **/ } ``` Result code generate: ``` public class CategoryItem_CustomFieldSerializer { @SuppressWarnings("unchecked") public static void deserialize(SerializationStreamReader reader, CategoryItem instance) throws SerializationException { instance.setProductKey((ArrayList) reader.readObject()); instance.setQuantity(reader.readInt()); } public static void serialize(SerializationStreamWriter writer, CategoryItem instance) throws SerializationException { if (instance.getProductKey() == null) { writer.writeObject(new ArrayList
VIP VIP
0.197553s