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

Examples of org.springframework.ide.eclipse.metadata.core.AspectMethodAnnotationMetadata.Type


            child.setLabel(BeansUIPlugin.getLabelProvider().getText(je));
          }

          // special handling for aspect method level annotation
          if (method instanceof AspectMethodAnnotationMetadata) {
            Type annotationType = ((AspectMethodAnnotationMetadata) method).getType();
            if (annotationType == Type.AFTER) {
              child.setImage(MetadataUIImages.getImage(MetadataUIImages.IMG_OBJS_AFTER_ADVICE));
            }
            else if (annotationType == Type.AROUND) {
              child.setImage(MetadataUIImages.getImage(MetadataUIImages.IMG_OBJS_AROUND_ADVICE));
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.metadata.core.AspectMethodAnnotationMetadata.Type

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.