This commit is contained in:
Rossen Stoyanchev
2014-01-24 08:57:50 -05:00
parent 23a64d3a4a
commit c896ca8417
4 changed files with 4 additions and 11 deletions

View File

@@ -63,8 +63,6 @@ public class RequestParameterMap extends PortletRequestParameterMap {
* <li>True</li>
* <li>null</li>
* </ol>
*
* @param useArrayForMultiValueAttributes
*/
public Boolean useArrayForMultiValueAttributes() {
return useArrayForMultiValueAttributes;

View File

@@ -64,7 +64,7 @@ public class EvaluateAction extends AbstractAction {
/**
* Create a new evaluate action.
* @param expression the expression to evaluate (required)
* @param evaluationResultExposer the strategy for how the expression result will be exposed to the flow (optional)
* @param resultExpression the result expression to evaluate (optional)
* @param resultEventFactory the factory that will map the evaluation result to a Web Flow event (optional)
*/
public EvaluateAction(Expression expression, Expression resultExpression, ResultEventFactory resultEventFactory) {

View File

@@ -41,11 +41,6 @@ import org.springframework.webflow.execution.RequestContext;
* <td>&nbsp;</td>
* </tr>
* <tr>
* <td>{@link org.springframework.core.enums.LabeledEnum}</td>
* <td>{@link org.springframework.core.enums.LabeledEnum#getLabel()}</td>
* <td>The result object will included in the event as an attribute named "result".</td>
* </tr>
* <tr>
* <td>{@link java.lang.Enum}</td>
* <td>{@link java.lang.Enum#name()}</td>
* <td>The result object will included in the event as an attribute named "result".</td>
@@ -65,7 +60,7 @@ import org.springframework.webflow.execution.RequestContext;
* @author Keith Donald
* @author Erwin Vervaet
*/
public class ResultObjectBasedEventFactory extends EventFactorySupport implements ResultEventFactory {
public class ResultObjectBasedEventFactory extends EventFactorySupport implements ResultEventFactory {
public Event createResultEvent(Object source, Object resultObject, RequestContext context) {
if (resultObject == null) {

View File

@@ -4,9 +4,9 @@
The implementation of the web flow execution engine.
</p>
<p>
The engine implementation itself is located within the {@link org.springframework.webflow.engine.impl impl} package.
The engine implementation itself is located within the {@code impl} sub-package.
Builders for assembling flow definitions executable by this engine are located within the
{@link org.springframework.webflow.engine.builder builder} package.
{@code builder} sub-package.
</p>
</body>
</html>