package net.sf.minuteProject.loader.mapping.node; //schema bean-map import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import net.sf.minuteProject.loader.mapping.MappingHolder; import net.sf.minuteProject.configuration.bean.AbstractConfigurationLoader; import net.sf.minuteProject.configuration.bean.Template; public class BeanAttribute extends AbstractConfigurationLoader{ private String _packageName; private BeanMap _beanMap; private String _type; private String _refType; private String _name; private String _alias; private String _id; private String _isList; private String _listType; public BeanAttribute() { } public String getTechnicalPackage(Template template) { return getPackageName(); } public String getPackageName() { if (_packageName == null) _packageName = new String(); return _packageName; } public void setPackageName(String _packageName) { this._packageName = _packageName; } public BeanMap getBeanMap() { return MappingHolder.getBeanMap(); } public String getType() { if (_type == null) _type = new String(); return _type; } public void setType (String _type) { this._type = _type; } public String getRefType() { if (_refType == null) _refType = new String(); return _refType; } public void setRefType (String _refType) { this._refType = _refType; } public String getName() { if (_name == null) _name = new String(); return _name; } public void setName (String _name) { this._name = _name; } public String getAlias() { if (_alias == null) _alias = new String(); return _alias; } public void setAlias (String _alias) { this._alias = _alias; } public String getId() { if (_id == null) _id = new String(); return _id; } public void setId (String _id) { this._id = _id; } public String getIsList() { if (_isList == null) _isList = new String(); return _isList; } public void setIsList (String _isList) { this._isList = _isList; } public String getListType() { if (_listType == null) _listType = new String(); return _listType; } public void setListType (String _listType) { this._listType = _listType; } }