Polish
This commit is contained in:
@@ -63,8 +63,6 @@ public class RequestParameterMap extends PortletRequestParameterMap {
|
||||
* <li>True</li>
|
||||
* <li>null</li>
|
||||
* </ol>
|
||||
*
|
||||
* @param useArrayForMultiValueAttributes
|
||||
*/
|
||||
public Boolean useArrayForMultiValueAttributes() {
|
||||
return useArrayForMultiValueAttributes;
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -41,11 +41,6 @@ import org.springframework.webflow.execution.RequestContext;
|
||||
* <td> </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) {
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user