You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2013/06/19 17:55:42 UTC

git commit: Write parameter names as

Updated Branches:
  refs/heads/master 1230be05f -> 1a964fe65


Write parameter names as <strong>


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/1a964fe6
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/1a964fe6
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/1a964fe6

Branch: refs/heads/master
Commit: 1a964fe65c43c02d7748624f959949ec30d83fed
Parents: 1230be0
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Wed Jun 19 08:55:29 2013 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Wed Jun 19 08:55:29 2013 -0700

----------------------------------------------------------------------
 .../java/org/apache/tapestry5/javadoc/TapestryDocTaglet.java   | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/1a964fe6/tapestry-javadoc/src/main/java/org/apache/tapestry5/javadoc/TapestryDocTaglet.java
----------------------------------------------------------------------
diff --git a/tapestry-javadoc/src/main/java/org/apache/tapestry5/javadoc/TapestryDocTaglet.java b/tapestry-javadoc/src/main/java/org/apache/tapestry5/javadoc/TapestryDocTaglet.java
index 40b518b..af9a0e6 100644
--- a/tapestry-javadoc/src/main/java/org/apache/tapestry5/javadoc/TapestryDocTaglet.java
+++ b/tapestry-javadoc/src/main/java/org/apache/tapestry5/javadoc/TapestryDocTaglet.java
@@ -1,4 +1,4 @@
-// Copyright 2011, 2012 The Apache Software Foundation
+// Copyright 2011-2013 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -189,7 +189,9 @@ public class TapestryDocTaglet implements Taglet, ClassDescriptionSource
     private void writerParameter(ParameterDescription pd, Writer writer) throws IOException
     {
 
-        element(writer, "td", pd.name);
+        writer.write("<td><strong>");
+        writer.write(pd.name);
+        writer.write("</strong></td>");
 
         element(writer, "td", addWordBreaks(shortenClassName(pd.type)));