Examples of IURLEntry


Examples of org.eclipse.update.core.IURLEntry

      /* Description */
      if (!isQualifierUpdate) {
        ICategory[] categories = newFeature.getSite().getCategories();
        if (categories.length > 0) {
          IURLEntry descriptionEntry = categories[0].getDescription();
          if (descriptionEntry != null)
            description = descriptionEntry.getAnnotation();
        }
      } else
        description = Messages.UpdateDialog_QUALIFIER_UPDATE_DESCRIPTION;

      showUpdateDescription(oldVer, newVer, dlSize, provider, description);
View Full Code Here

Examples of org.eclipse.update.core.IURLEntry

      provider = newFeature.getProvider();

      /* Description (if present) */
      ICategory[] categories = newFeature.getSite().getCategories();
      if (categories.length > 0) {
        IURLEntry descriptionEntry = categories[0].getDescription();
        if (descriptionEntry != null)
          description = descriptionEntry.getAnnotation();
      }

      if (!StringUtils.isSet(description))
        description = Messages.UpdateDialog_QUALIFIER_UPDATE_DESCRIPTION;

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.