| | 641 | <xsl:if test="@type = 'boolean' or @type = 'Boolean' or @type = 'java.lang.Boolean'"> |
| | 642 | /** |
| | 643 | * Returns the <xsl:value-of select="$doc"/>. <xsl:call-template name="generate-xdoclet"> |
| | 644 | <xsl:with-param name="doc-text" select="current()/xdoclet" /> |
| | 645 | <xsl:with-param name="indent"><xsl:text> </xsl:text></xsl:with-param> |
| | 646 | </xsl:call-template><xsl:if test="@copyValue = 'clone'"> |
| | 647 | * The value is cloned before being returned.</xsl:if><xsl:if test="@copyValue = 'constructor'"> |
| | 648 | * The value is copied using the copy constructor before being returned.</xsl:if> |
| | 649 | * @return the <xsl:value-of select="$doc"/>. |
| | 650 | */ |
| | 651 | public <xsl:value-of select="@type"/> is<xsl:value-of select="$identifier"/> () |
| | 652 | { |
| | 653 | return get<xsl:value-of select="$identifier"/>(); |
| | 654 | } |
| | 655 | </xsl:if> |