📄 xmlbeantypeinfo.java
字号:
package org.codehaus.xfire.aegis.type.basic;import java.beans.PropertyDescriptor;import java.util.HashMap;import java.util.Iterator;import java.util.List;import java.util.Map;import javax.xml.namespace.QName;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;import org.codehaus.xfire.XFireRuntimeException;import org.codehaus.xfire.util.NamespaceHelper;import org.jdom.Element;public class XMLBeanTypeInfo extends BeanTypeInfo{ private static final Log logger = LogFactory.getLog(XMLBeanTypeInfo.class); private List mappings; /** * Map used for storing meta data about each property */ private Map name2PropertyInfo = new HashMap(); public XMLBeanTypeInfo(Class typeClass, List mappings, String defaultNS) { super(typeClass, defaultNS); this.mappings = mappings; } protected boolean registerType(PropertyDescriptor desc) { Element e = getPropertyElement(desc.getName()); if (e != null && e.getAttributeValue("type") != null) return false; return super.registerType(desc); } protected void mapProperty(PropertyDescriptor pd) { Element e = getPropertyElement(pd.getName()); String style = null; QName mappedName = null; if (e != null) { String ignore = e.getAttributeValue("ignore"); if (ignore != null && ignore.equals("true")) return; logger.debug("Found mapping for property " + pd.getName()); style = e.getAttributeValue("style"); mappedName = NamespaceHelper.createQName(e, e.getAttributeValue("mappedName"), getDefaultNamespace()); } if (style == null) style = "element"; if (mappedName == null) mappedName = createMappedName(pd); if (e != null) { QName mappedType = NamespaceHelper.createQName(e, e.getAttributeValue("typeName"), getDefaultNamespace()); if (mappedType != null) mapTypeName(mappedName, mappedType); String nillableVal = e.getAttributeValue("nillable"); if (nillableVal != null && nillableVal.length() > 0) { ensurePropertyInfo( mappedName ).setNillable( Boolean.valueOf(nillableVal).booleanValue() ); } String minOccurs = e.getAttributeValue("minOccurs"); if ( minOccurs != null && minOccurs.length() > 0 ) { ensurePropertyInfo( mappedName).setMinOccurs( Integer.parseInt( minOccurs ) ); } } try { //logger.debug("Mapped " + pd.getName() + " as " + style + " with name " + mappedName); if (style.equals("element")) mapElement(pd.getName(), mappedName); else if (style.equals("attribute")) mapAttribute(pd.getName(), mappedName); else throw new XFireRuntimeException("Invalid style: " + style); } catch(XFireRuntimeException ex) { ex.prepend("Couldn't create type for property " + pd.getName() + " on " + getTypeClass()); throw ex; } } private Element getPropertyElement(String name2) { for (Iterator itr = mappings.iterator(); itr.hasNext();) { Element mapping2 = (Element) itr.next(); List elements = mapping2.getChildren("property"); for (int i = 0; i < elements.size(); i++) { Element e = (Element) elements.get(i); String name = e.getAttributeValue("name"); if (name != null && name.equals(name2)) { return e; } } } return null; } /** * Grab Nillable by looking in PropertyInfo map * if no entry found, revert to parent class */ public boolean isNillable(QName name) { BeanTypePropertyInfo info = getPropertyInfo( name ); if ( info != null ) return info.isNillable(); return super.isNillable(name); } /** * Grab Min Occurs by looking in PropertyInfo map * if no entry found, revert to parent class */ public int getMinOccurs (QName name) { BeanTypePropertyInfo info = getPropertyInfo( name ); if ( info != null ) return info.getMinOccurs(); return super.getMinOccurs( name ); } /** * Grab the Property Info for the given property * @param name * @return the BeanTypePropertyInfo for the property or NULL if none found */ private BeanTypePropertyInfo getPropertyInfo (QName name) { return (BeanTypePropertyInfo) name2PropertyInfo.get( name ); } /** * Grab the Property Info for the given property but if not found * create one and add it to the map * @param name * @return the BeanTypePropertyInfo for the property */ private BeanTypePropertyInfo ensurePropertyInfo (QName name) { BeanTypePropertyInfo result = getPropertyInfo( name ); if ( result == null ) { result = new BeanTypePropertyInfo(); name2PropertyInfo.put( name, result ); } return result; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -