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 2014/03/03 23:07:51 UTC

git commit: Correct invalid JavaDoc comments

Repository: tapestry-5
Updated Branches:
  refs/heads/master 9dfe22e08 -> 05083f927


Correct invalid JavaDoc comments


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

Branch: refs/heads/master
Commit: 05083f9273109e73b08d3669a4c5dd0564bad1ad
Parents: 9dfe22e
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Mar 3 14:07:38 2014 -0800
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Mar 3 14:07:38 2014 -0800

----------------------------------------------------------------------
 .../tapestry5/services/javascript/JavaScriptStack.java  | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/05083f92/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptStack.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptStack.java b/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptStack.java
index 553d2a4..d4f7042 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptStack.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptStack.java
@@ -1,4 +1,4 @@
-// Copyright 2010, 2012, 2013 The Apache Software Foundation
+// Copyright 2010-2014 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.
@@ -42,6 +42,7 @@ import java.util.List;
  * The {@link ExtensibleJavaScriptStack} is the best way to create new stacks.
  *
  * @see ThreadLocale
+ * @see org.apache.tapestry5.services.javascript.ExtensibleJavaScriptStack
  * @since 5.2.0
  */
 public interface JavaScriptStack
@@ -64,10 +65,13 @@ public interface JavaScriptStack
     List<StylesheetLink> getStylesheets();
 
     /**
-     * Returns a list of modules to {@link JavaScriptSupport#require(String) require} with the stack.
+     * Returns a list of modules to include with the stack, when aggregating the stack's JavaScript.
+     * It is still necessary to explicitly {@linkplain org.apache.tapestry5.services.javascript.JavaScriptSupport#require(String) require}
+     * such modules.
      *
-     * @since 5.4
      * @see ModuleManager
+     * @see org.apache.tapestry5.SymbolConstants#COMBINE_SCRIPTS
+     * @since 5.4
      */
     List<String> getModules();
 
@@ -78,7 +82,7 @@ public interface JavaScriptStack
      * should be localized.
      *
      * @deprecated Deprecated in Tapestry 5.4; may be removed in a future release. Implementations
-     *             may return null.
+     * may return null.
      */
     String getInitialization();
 }