org.xson.web.ognl.FieldVoWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xco-web Show documentation
Show all versions of xco-web Show documentation
xco-web is an easy to use control layer framework, is part of the SOA system, using xml language to describe the controller.
The newest version!
package org.xson.web.ognl;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class FieldVoWrapper {
private List fieldList;
private Map fieldMap;
public FieldVoWrapper(List fieldList) {
this.fieldList = fieldList;
fieldMap = new HashMap();
for (FieldVo model : fieldList) {
fieldMap.put(model.getName(), model);
}
}
public List getFieldList() {
return fieldList;
}
public Map getFieldMap() {
return fieldMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy