You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/07/24 07:30:37 UTC

svn commit: r797351 - /incubator/kato/trunk/org.apache.kato/kato.docs/src/xslt/packagecontents.xslt

Author: spoole
Date: Fri Jul 24 07:30:37 2009
New Revision: 797351

URL: http://svn.apache.org/viewvc?rev=797351&view=rev
Log:
add throws info to spec doc

Modified:
    incubator/kato/trunk/org.apache.kato/kato.docs/src/xslt/packagecontents.xslt

Modified: incubator/kato/trunk/org.apache.kato/kato.docs/src/xslt/packagecontents.xslt
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.docs/src/xslt/packagecontents.xslt?rev=797351&r1=797350&r2=797351&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.docs/src/xslt/packagecontents.xslt (original)
+++ incubator/kato/trunk/org.apache.kato/kato.docs/src/xslt/packagecontents.xslt Fri Jul 24 07:30:37 2009
@@ -262,7 +262,7 @@
 															<xsl:if test="count(./javadoc:paramdescs/javadoc:paramdesc)>0">
 																	<section>
 																	<informaltable>
-																	<tgroup cols='5' align='left' colsep='1' rowsep='1'>
+																	<tgroup cols='5' align='left' colsep='0' rowsep='0'>
 																		<colspec name="a"/>
 																	<colspec name="b"/>
 																	<colspec name="c"/>
@@ -284,6 +284,32 @@
 																	</informaltable>
 																	</section>
 															</xsl:if>
+															<!-- throqs -->
+															<xsl:if test="count(./javadoc:throws/javadoc:throw)>0">
+																	<section>
+																	<informaltable frame="none">
+																	<tgroup cols='5' align='left' colsep='0' rowsep='0'>
+																		<colspec name="a"/>
+																	<colspec name="b"/>
+																	<colspec name="c"/>
+																	<colspec name="d"/>
+																	<colspec name="e"/>
+																	<thead>
+																	<row><entry namest="a" nameend="e">Throws</entry></row>
+																	</thead>
+																	<tbody>
+																	
+																	<xsl:for-each select="./javadoc:throws/javadoc:throw">
+																		<row>
+																			<entry namest="a" nameend="b"><xsl:value-of select="@name" /></entry>
+																			<entry namest="c" nameend="e"><xsl:value-of select="."/></entry>
+																		</row>
+																	</xsl:for-each>
+																	</tbody>
+																	</tgroup>
+																	</informaltable>
+																	</section>
+															</xsl:if>
 															</entry>
 														</row>
 													</xsl:for-each>