Package org.springframework.ide.eclipse.metadata.core

Examples of org.springframework.ide.eclipse.metadata.core.AutowireAnnotationMetadata


        node.setChildren(children.toArray());
        return new Object[] { node };
      }
    }
    else if (element instanceof AutowireAnnotationMetadata) {
      AutowireAnnotationMetadata metadata = (AutowireAnnotationMetadata) element;
      List<Object> children = new ArrayList<Object>();
      for (IMethodMetadata methodMetadata : metadata.getMethodMetaData()) {
        IJavaElement je = JavaCore.create(methodMetadata.getHandleIdentifier());
        BeanMetadataNode node = new BeanMetadataNode(methodMetadata.getHandleIdentifier());
        node.setLabel(methodMetadata.getValueAsText() + BeansUIPlugin.getLabelProvider().getText(je));
        node.setImage(BeansUIPlugin.getLabelProvider().getImage(je));
        node.setLocation(methodMetadata.getElementSourceLocation());
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.metadata.core.AutowireAnnotationMetadata

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.