Package org.milyn.javabean.BeanRuntimeInfo

Examples of org.milyn.javabean.BeanRuntimeInfo.Classification


        return;
      }

        Object bean = executionContext.getBeanContext().getBean(beanId);

        Classification beanType = beanRuntimeInfo.getClassification();

        createPropertySetterMethod(bean, dataObject.getClass());

        if(logger.isDebugEnabled()) {
            logger.debug("Setting data object '" + wireBeanIdName + "' (" + dataObject.getClass().getName() + ") on target bean '" + beanId + "'.");
View Full Code Here


  public void visitAfter(SAXElement element, ExecutionContext executionContext) throws SmooksException, IOException {
    visitAfter(executionContext, new Fragment(element));
  }

  public void visitAfter(ExecutionContext executionContext, Fragment source) {
        Classification thisBeanType = beanRuntimeInfo.getClassification();
        boolean isBeanTypeArray = (thisBeanType == Classification.ARRAY_COLLECTION);

        BeanContext beanContext = executionContext.getBeanContext();
        beanContext.setBeanInContext(beanId, false);
View Full Code Here

TOP

Related Classes of org.milyn.javabean.BeanRuntimeInfo.Classification

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.