Package cn.com.byd.compose.beans

Examples of cn.com.byd.compose.beans.ParameterType


    }

    Attribute attributeID = element.attribute(ATTRIBUTE_ID);
    List<ParameterType> parameters = parameter.getParameters();

    ParameterType parameter = new ParameterType();
    parameters.add(parameter);
    parameter.setClazz(RefObjectUtil.load(attributeType.getStringValue()));
    parameter.setTypeName(attributeType.getStringValue());
    parameter.setReferenceValue(attributeValue == null ? null : attributeValue.getStringValue());
    parameter.setId(attributeID == null ? null : attributeID.getStringValue());
    Iterator<Element> it = element.elementIterator();
    Element subElement = null;
    if (it.hasNext()) {
      parameter.setBeanFieldMap(new HashMap<String, String>());
      do {
        subElement = it.next();
        ElementFactory.findElement(subElement.getName(), new Object[] { parameter }).doParese(subElement);
      } while (it.hasNext());
    }
View Full Code Here

TOP

Related Classes of cn.com.byd.compose.beans.ParameterType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.