Revision: 683
http://stripes.svn.sourceforge.net/stripes/?rev=683&view=rev
Author: bengunter
Date: 2007-12-13 07:45:18 -0800 (Thu, 13 Dec 2007)
Log Message:
-----------
Javadoc fixes submitted by Freddy Daoud.
Modified Paths:
--------------
trunk/build.xml
trunk/stripes/src/net/sourceforge/stripes/action/ActionBean.java
trunk/stripes/src/net/sourceforge/stripes/action/DontBind.java
trunk/stripes/src/net/sourceforge/stripes/action/OnwardResolution.java
trunk/stripes/src/net/sourceforge/stripes/controller/BindingPolicyManager.java
trunk/stripes/src/net/sourceforge/stripes/controller/StripesRequestWrapper.java
trunk/stripes/src/net/sourceforge/stripes/util/Base64.java
trunk/stripes/src/net/sourceforge/stripes/util/bean/PropertyExpressionEvaluation.java
trunk/stripes/src/net/sourceforge/stripes/validation/Validate.java
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2007-12-12 23:43:26 UTC (rev 682)
+++ trunk/build.xml 2007-12-13 15:45:18 UTC (rev 683)
@@ -87,7 +87,7 @@
<!-- ===================================================================
-->
<!-- Generates the documentation for the stripes and examples projects.
-->
<!-- ===================================================================
-->
- <target name="doc" description="Generates the Stripes JavaDoc and Tag
Library documentation.">
+ <target name="doc" depends="build" description="Generates the Stripes
JavaDoc and Tag Library documentation.">
<ant dir="${stripes.dir}" target="javadoc"/>
<ant dir="${stripes.dir}" target="tlddoc"/>
<ant dir="${examples.dir}" target="javadoc"/>
Modified: trunk/stripes/src/net/sourceforge/stripes/action/ActionBean.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/action/ActionBean.java
2007-12-12 23:43:26 UTC (rev 682)
+++ trunk/stripes/src/net/sourceforge/stripes/action/ActionBean.java
2007-12-13 15:45:18 UTC (rev 683)
@@ -14,6 +14,8 @@
*/
package net.sourceforge.stripes.action;
+import net.sourceforge.stripes.validation.ValidationErrorHandler;
+
/**
* <p>Interface for all classes that respond to user interface events.
Implementations receive
* information about the event (usually a form submission) in two ways. The
first is through a
Modified: trunk/stripes/src/net/sourceforge/stripes/action/DontBind.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/action/DontBind.java
2007-12-12 23:43:26 UTC (rev 682)
+++ trunk/stripes/src/net/sourceforge/stripes/action/DontBind.java
2007-12-13 15:45:18 UTC (rev 683)
@@ -20,6 +20,8 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
+import net.sourceforge.stripes.controller.LifecycleStage;
+
/**
* Marker annotation to specify that the event handled by the annotated method
should skip
* [EMAIL PROTECTED] LifecycleStage#BindingAndValidation} altogether. This is
useful for events which ignore
Modified: trunk/stripes/src/net/sourceforge/stripes/action/OnwardResolution.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/action/OnwardResolution.java
2007-12-12 23:43:26 UTC (rev 682)
+++ trunk/stripes/src/net/sourceforge/stripes/action/OnwardResolution.java
2007-12-13 15:45:18 UTC (rev 683)
@@ -19,6 +19,7 @@
import java.util.Map;
import net.sourceforge.stripes.controller.StripesFilter;
+import net.sourceforge.stripes.format.Formatter;
import net.sourceforge.stripes.util.UrlBuilder;
/**
Modified:
trunk/stripes/src/net/sourceforge/stripes/controller/BindingPolicyManager.java
===================================================================
---
trunk/stripes/src/net/sourceforge/stripes/controller/BindingPolicyManager.java
2007-12-12 23:43:26 UTC (rev 682)
+++
trunk/stripes/src/net/sourceforge/stripes/controller/BindingPolicyManager.java
2007-12-13 15:45:18 UTC (rev 683)
@@ -89,7 +89,7 @@
/**
* Create a new instance to handle binding security for the given type.
*
- * @param beanType the type to which the binding policy applies
+ * @param beanClass the class to which the binding policy applies
*/
protected BindingPolicyManager(Class<?> beanClass) {
try {
@@ -207,7 +207,6 @@
/**
* Get the default policy.
*
- * @param beanType the class whose policy is to be looked up
* @return the policy
*/
public Policy getDefaultPolicy() {
@@ -219,7 +218,7 @@
*
* @param globArray an array of property name globs, each of which may be
a comma separated list
* of globs
- * @return
+ * @return the pattern
*/
protected Pattern globToPattern(String... globArray) {
if (globArray == null || globArray.length == 0)
Modified:
trunk/stripes/src/net/sourceforge/stripes/controller/StripesRequestWrapper.java
===================================================================
---
trunk/stripes/src/net/sourceforge/stripes/controller/StripesRequestWrapper.java
2007-12-12 23:43:26 UTC (rev 682)
+++
trunk/stripes/src/net/sourceforge/stripes/controller/StripesRequestWrapper.java
2007-12-13 15:45:18 UTC (rev 683)
@@ -194,7 +194,7 @@
/**
* Restore the URI parameters to the state they were in before the
previous call to
- * [EMAIL PROTECTED] #pushUriParameters(HttpServletRequest)}.
+ * [EMAIL PROTECTED] #pushUriParameters(HttpServletRequestWrapper)}.
*/
public void popUriParameters() {
this.parameterMap.popUriParameters();
@@ -437,7 +437,7 @@
/**
* Restore the URI parameters to the state they were in before the
previous call to
- * [EMAIL PROTECTED] #pushUriParameters(HttpServletRequest)}.
+ * [EMAIL PROTECTED] #pushUriParameters(HttpServletRequestWrapper)}.
*/
public void popUriParameters() {
if (this.uriParamStack.isEmpty()) {
Modified: trunk/stripes/src/net/sourceforge/stripes/util/Base64.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/util/Base64.java 2007-12-12
23:43:26 UTC (rev 682)
+++ trunk/stripes/src/net/sourceforge/stripes/util/Base64.java 2007-12-13
15:45:18 UTC (rev 683)
@@ -690,7 +690,6 @@
* @param off Offset in array where conversion should begin
* @param len Length of data to convert
* @param options Specified options
- * @param options alphabet type is pulled from this (standard,
url-safe, ordered)
* @see Base64#GZIP
* @see Base64#DONT_BREAK_LINES
* @since 2.0
Modified:
trunk/stripes/src/net/sourceforge/stripes/util/bean/PropertyExpressionEvaluation.java
===================================================================
---
trunk/stripes/src/net/sourceforge/stripes/util/bean/PropertyExpressionEvaluation.java
2007-12-12 23:43:26 UTC (rev 682)
+++
trunk/stripes/src/net/sourceforge/stripes/util/bean/PropertyExpressionEvaluation.java
2007-12-13 15:45:18 UTC (rev 683)
@@ -390,7 +390,7 @@
* TypeParameter provided.
*
* @param evaluation the current NodeEvaluation
- * @param type the TypeVariable to try and find a more concrete type for
+ * @param typeVar the TypeVariable to try and find a more concrete type for
* @return the actual type argument for the type variable if possible, or
null
*/
protected Type getTypeVariableValue(NodeEvaluation evaluation,
TypeVariable<?> typeVar) {
Modified: trunk/stripes/src/net/sourceforge/stripes/validation/Validate.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/validation/Validate.java
2007-12-12 23:43:26 UTC (rev 682)
+++ trunk/stripes/src/net/sourceforge/stripes/validation/Validate.java
2007-12-13 15:45:18 UTC (rev 683)
@@ -20,6 +20,8 @@
import java.lang.annotation.ElementType;
import java.lang.annotation.Documented;
+import net.sourceforge.stripes.tag.InputHiddenTag;
+
/**
* Primary annotation used to specify validations for form fields. Allows
quick and easy
* specification of the most common types of validation logic, as well as a
way to specify
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development