Changeset 1078 for trunk/src/xml/xsl/libcommon.xsl
- Timestamp:
- 07/10/08 12:39:08 (4 years ago)
- Files:
-
- 1 modified
-
trunk/src/xml/xsl/libcommon.xsl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/xml/xsl/libcommon.xsl
r1076 r1078 1817 1817 1818 1818 /** 1819 * Translates a <tt>BigDecimal</tt> value into a1820 * <tt><xsl:value-of select="$classname"/></tt>.1819 * Translates a <tt>BigDecimal</tt> value into a 1820 * <tt><xsl:value-of select="$classname"/></tt>. 1821 1821 * 1822 * @param bd the <tt>BigDecimal</tt>.1823 * @return a <tt><xsl:value-of select="$classname"/></tt> whose value is equal1822 * @param bd the <tt>BigDecimal</tt>. 1823 * @return a <tt><xsl:value-of select="$classname"/></tt> whose value is equal 1824 1824 * to bd. 1825 1825 * @throws ArgumentMalformedException If the given 1826 * <tt>BigDecimal</tt> violates the restriction1826 * <tt>BigDecimal</tt> violates the restriction 1827 1827 * of the <xsl:value-of select="$classname"/> type. 1828 1828 */ … … 1841 1841 1842 1842 /** 1843 * Translates a <tt>long</tt> value into a1844 * <tt><xsl:value-of select="$classname"/></tt>.1843 * Translates a <tt>long</tt> value into a 1844 * <tt><xsl:value-of select="$classname"/></tt>. 1845 1845 * 1846 * @param val the <tt>long</tt>.1847 * @return a <tt><xsl:value-of select="$classname"/></tt> whose value is equal1846 * @param val the <tt>long</tt>. 1847 * @return a <tt><xsl:value-of select="$classname"/></tt> whose value is equal 1848 1848 * to the given long. 1849 1849 * @throws ArgumentMalformedException If the given 1850 * <tt>long</tt> violates the restriction1850 * <tt>long</tt> violates the restriction 1851 1851 * of the <xsl:value-of select="$classname"/> type. 1852 1852 * @see BigDecimal#valueOf(long) … … 1870 1870 1871 1871 /** 1872 * Translates a <tt>long</tt> with the given scale into a1873 * <tt><xsl:value-of select="$classname"/></tt>.1872 * Translates a <tt>long</tt> with the given scale into a 1873 * <tt><xsl:value-of select="$classname"/></tt>. 1874 1874 * 1875 1875 * @param unscaledVal the unscaled value. 1876 1876 * @param scale the scale to be applied. 1877 * @return a <tt><xsl:value-of select="$classname"/></tt> whose value is1878 * <tt>(unscaledVal &times; 10<sup>-scale</sup>)</tt>.1877 * @return a <tt><xsl:value-of select="$classname"/></tt> whose value is 1878 * <tt>(unscaledVal &times; 10<sup>-scale</sup>)</tt>. 1879 1879 * @throws ArgumentMalformedException If the given 1880 1880 * long and scale violates the restriction
