问问题
1296 次
1 回答
3
您可以为您的类型注册自定义数据绑定DeviceType
器:
Formatters.register(DeviceType.class, new Formatters.SimpleFormatter<DeviceType>() {
@Override
public DeviceType parse(String input, Locale l) throws ParseException {
return …
}
@Override
public String print(DeviceType deviceType, Locale l) {
return …
}
});
于 2012-04-23T20:54:34.713 回答