Package org.springframework.ide.eclipse.aop.ui.navigator.model

Examples of org.springframework.ide.eclipse.aop.ui.navigator.model.BeanReferenceNode


          && BeansCorePlugin.getModel().getElement(bean.getElementID()) != null) {
        // Check model source location so that aop nodes are not added
        if (bean.getElementSourceLocation() instanceof XmlSourceLocation) {
          String namespace = ((XmlSourceLocation) bean.getElementSourceLocation()).getNamespaceURI();
          if (!namespace.equals("http://www.springframework.org/schema/aop")) {
            BeanReferenceNode rn = new BeanReferenceNode(bean.getElementID());
            nodes.add(rn);
            beansRefs.put(bean, rn);
          }
        }
        else {
          BeanReferenceNode rn = new BeanReferenceNode(bean.getElementID());
          nodes.add(rn);
          beansRefs.put(bean, rn);
        }
      }
    }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.aop.ui.navigator.model.BeanReferenceNode

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.