org.apache.taglibs.standard.Version.getDevelopmentVersionNum()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(5.8k)|赞(0)|评价(0)|浏览(102)

本文整理了Java中org.apache.taglibs.standard.Version.getDevelopmentVersionNum()方法的一些代码示例,展示了Version.getDevelopmentVersionNum()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Version.getDevelopmentVersionNum()方法的具体详情如下:
包路径:org.apache.taglibs.standard.Version
类名称:Version
方法名:getDevelopmentVersionNum

Version.getDevelopmentVersionNum介绍

[英]Development Drop Number. Optional identifier designates development drop of a specific release. D01 is the first development drop of a new release. Development drops are works in progress towards a compeleted, final release. A specific development drop may not completely implement all aspects of a new feature, which may take several development drops to complete. At the point of the final drop for the release, the D suffix will be omitted. Each 'D' drops can contain functional enhancements as well as defect fixes. 'D' drops may not be as stable as the final releases.
[中]发展下降数字。可选标识符指定特定版本的开发。D01是新版本的第一个开发版本。开发计划是为完成最终版本而进行的工作。一个特定的开发阶段可能不会完全实现一个新功能的所有方面,这可能需要几个开发阶段才能完成。在发布的最后一次下降时,D后缀将被省略。每一个“D”下拉列表都可以包含功能增强和缺陷修复D’drops可能没有最终版本那么稳定。

代码示例

代码示例来源:origin: org.jboss.spec.javax.servlet.jstl/jboss-jstl-api_1.2_spec

/**
 * Get the basic version string for the current release.
 * Version String formatted like
 * <CODE>"<B>standard-taglib</B> v.r[.dd| <B>D</B>nn]"</CODE>.
 * <p>Futurework: have this read version info from jar manifest.
 *
 * @return String denoting our current version
 */
public static String getVersion() {
  return getProduct() + " " +
      getMajorVersionNum() + "." + getReleaseVersionNum() + "." +
      getMaintenanceVersionNum() +
      ((getDevelopmentVersionNum() > 0) ?
          ("_D" + getDevelopmentVersionNum()) : "");
}

代码示例来源:origin: org.apache.taglibs/taglibs-standard-impl

/**
 * Get the basic version string for the current release.
 * Version String formatted like
 * <CODE>"<B>standard-taglib</B> v.r[.dd| <B>D</B>nn]"</CODE>.
 * <p>Futurework: have this read version info from jar manifest.
 *
 * @return String denoting our current version
 */
public static String getVersion() {
  return getProduct() + " " +
      getMajorVersionNum() + "." + getReleaseVersionNum() + "." +
      getMaintenanceVersionNum() +
      ((getDevelopmentVersionNum() > 0) ?
          ("_D" + getDevelopmentVersionNum()) : "");
}

代码示例来源:origin: org.apache.taglibs/com.springsource.org.apache.taglibs.standard

/**
 * Get the basic version string for the current release.
 * Version String formatted like 
 * <CODE>"<B>standard-taglib</B> v.r[.dd| <B>D</B>nn]"</CODE>.
 *
 * Futurework: have this read version info from jar manifest.
 *
 * @return String denoting our current version
 */
public static String getVersion()
{
 return getProduct() + " " +
     getMajorVersionNum() + "." + getReleaseVersionNum()+ "." +
     getMaintenanceVersionNum() +
     ((getDevelopmentVersionNum() > 0) ? 
       ("_D" + getDevelopmentVersionNum()) : "");
}

代码示例来源:origin: org.glassfish.web/jstl-impl

/**
 * Get the basic version string for the current release.
 * Version String formatted like 
 * <CODE>"<B>standard-taglib</B> v.r[.dd| <B>D</B>nn]"</CODE>.
 *
 * Futurework: have this read version info from jar manifest.
 *
 * @return String denoting our current version
 */
public static String getVersion()
{
 return getProduct() + " " +
     getMajorVersionNum() + "." + getReleaseVersionNum()+ "." +
     getMaintenanceVersionNum() +
     ((getDevelopmentVersionNum() > 0) ? 
       ("_D" + getDevelopmentVersionNum()) : "");
}

代码示例来源:origin: org.glassfish.web/javax.servlet.jsp.jstl

/**
 * Get the basic version string for the current release.
 * Version String formatted like 
 * <CODE>"<B>standard-taglib</B> v.r[.dd| <B>D</B>nn]"</CODE>.
 *
 * Futurework: have this read version info from jar manifest.
 *
 * @return String denoting our current version
 */
public static String getVersion()
{
 return getProduct() + " " +
     getMajorVersionNum() + "." + getReleaseVersionNum()+ "." +
     getMaintenanceVersionNum() +
     ((getDevelopmentVersionNum() > 0) ? 
       ("_D" + getDevelopmentVersionNum()) : "");
}

代码示例来源:origin: javax.servlet/com.springsource.javax.servlet.jsp.jstl

/**
 * Get the basic version string for the current release.
 * Version String formatted like 
 * <CODE>"<B>standard-taglib</B> v.r[.dd| <B>D</B>nn]"</CODE>.
 *
 * Futurework: have this read version info from jar manifest.
 *
 * @return String denoting our current version
 */
public static String getVersion()
{
 return getProduct() + " " +
     getMajorVersionNum() + "." + getReleaseVersionNum()+ "." +
     getMaintenanceVersionNum() +
     ((getDevelopmentVersionNum() > 0) ? 
       ("_D" + getDevelopmentVersionNum()) : "");
}

代码示例来源:origin: org.eclipse.jetty.orbit/org.apache.taglibs.standard.glassfish

/**
 * Get the basic version string for the current release.
 * Version String formatted like 
 * <CODE>"<B>standard-taglib</B> v.r[.dd| <B>D</B>nn]"</CODE>.
 *
 * Futurework: have this read version info from jar manifest.
 *
 * @return String denoting our current version
 */
public static String getVersion()
{
 return getProduct() + " " +
     getMajorVersionNum() + "." + getReleaseVersionNum()+ "." +
     getMaintenanceVersionNum() +
     ((getDevelopmentVersionNum() > 0) ? 
       ("_D" + getDevelopmentVersionNum()) : "");
}

代码示例来源:origin: org.bluestemsoftware.open.maven.tparty/jsp-api-2.1

/**
 * Get the basic version string for the current release.
 * Version String formatted like 
 * <CODE>"<B>standard-taglib</B> v.r[.dd| <B>D</B>nn]"</CODE>.
 *
 * Futurework: have this read version info from jar manifest.
 *
 * @return String denoting our current version
 */
public static String getVersion()
{
 return getProduct() + " " +
     getMajorVersionNum() + "." + getReleaseVersionNum()+ "." +
     getMaintenanceVersionNum() +
     ((getDevelopmentVersionNum() > 0) ? 
       ("_D" + getDevelopmentVersionNum()) : "");
}

相关文章