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/11/28 01:43:52 UTC

git commit: Add JavaDoc to the parameters of the Confirm component

Updated Branches:
  refs/heads/master 953acd2cc -> fc72c4dc6


Add JavaDoc to the parameters of the Confirm component


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

Branch: refs/heads/master
Commit: fc72c4dc647bf64856082d420d2a61dc6f4974f7
Parents: 953acd2
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Wed Nov 27 16:43:45 2013 -0800
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Wed Nov 27 16:43:45 2013 -0800

----------------------------------------------------------------------
 .../main/java/org/apache/tapestry5/corelib/mixins/Confirm.java | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/fc72c4dc/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java b/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java
index 7dda257..e8efbf3 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/Confirm.java
@@ -35,9 +35,15 @@ import org.apache.tapestry5.annotations.Parameter;
 @Import(module = "t5/core/confirm-click")
 public class Confirm
 {
+    /**
+     * The message to present to the user in the body of the modal dialog.
+     */
     @Parameter(value = "message:default-confirm-message", defaultPrefix = BindingConstants.LITERAL)
     private String message;
 
+    /**
+     * The title for the modal dialog.
+     */
     @Parameter(value = "message:default-confirm-title", defaultPrefix = BindingConstants.LITERAL)
     private String title;