Examples of ProfileAwareBeansComponent


Examples of org.springframework.ide.eclipse.beans.core.internal.model.ProfileAwareBeansComponent

      StringBuilder str = new StringBuilder();
      str.append("Navigate to ");
      str.append(modelElement.getElementName());
      IModelElement parent = modelElement.getElementParent();
      if (parent instanceof ProfileAwareBeansComponent) {
        ProfileAwareBeansComponent beans = (ProfileAwareBeansComponent) parent;
        Set<String> profiles = beans.getProfiles();

        str.append(" in profile");
        if (profiles.size() > 1) {
          str.append("s");
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.