* | {@link java.lang.Enum} |
* {@link java.lang.Enum#name()} |
* The result object will included in the event as an attribute named "result". |
diff --git a/spring-webflow/src/main/java/org/springframework/webflow/context/servlet/FilenameFlowUrlHandler.java b/spring-webflow/src/main/java/org/springframework/webflow/context/servlet/FilenameFlowUrlHandler.java
index 732f30c3..aa327de9 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/context/servlet/FilenameFlowUrlHandler.java
+++ b/spring-webflow/src/main/java/org/springframework/webflow/context/servlet/FilenameFlowUrlHandler.java
@@ -30,8 +30,9 @@ import org.springframework.webflow.core.collection.AttributeMap;
*
* This implementation extracts the filename and removes the file extension from the request URL. The results will be
* used as the flow Id that must be unique throughout the application.
- *
- * For example the URLs
+ *
+ *
+ * For example the URLs:
*
*
* http://someHost/someApp/someServlet/foo
@@ -40,8 +41,8 @@ import org.springframework.webflow.core.collection.AttributeMap;
*
*
* will all treat the filename "foo" as the flow id.
- *
- *
+ *
+ *
* Note: Because this class only treats a filename as a flow id, clashes can result. For example:
*
*
diff --git a/spring-webflow/src/main/java/org/springframework/webflow/engine/Transition.java b/spring-webflow/src/main/java/org/springframework/webflow/engine/Transition.java
index 3cdfa00b..b976c2c0 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/engine/Transition.java
+++ b/spring-webflow/src/main/java/org/springframework/webflow/engine/Transition.java
@@ -29,7 +29,7 @@ import org.springframework.webflow.execution.RequestContext;
* A path from one {@link TransitionableState state} to another {@link State state}.
*
* When executed a transition takes a flow execution from its current state, called the source state, to another
- * state, called the target state. A transition may become eligible for execution on the occurrence of an
+ * state, called the target state. A transition may become eligible for execution on the occurrence of an
* {@link Event} from within a transitionable source state.
*
* When an event occurs within this transition's source TransitionableState the determination of the
@@ -246,4 +246,4 @@ public class Transition extends AnnotatedObject implements TransitionDefinition
return new ToStringCreator(this).append("on", getMatchingCriteria()).append("to", getTargetStateResolver())
.toString();
}
-}
+}
diff --git a/spring-webflow/src/main/java/org/springframework/webflow/engine/model/builder/xml/DefaultDocumentLoader.java b/spring-webflow/src/main/java/org/springframework/webflow/engine/model/builder/xml/DefaultDocumentLoader.java
index 2acec77f..5da6a6fd 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/engine/model/builder/xml/DefaultDocumentLoader.java
+++ b/spring-webflow/src/main/java/org/springframework/webflow/engine/model/builder/xml/DefaultDocumentLoader.java
@@ -33,7 +33,7 @@ import org.xml.sax.SAXException;
/**
* The default document loader strategy for XSD-based XML documents with validation enabled by default.
*
- * Note: full XSD support requires JDK 5.0 or a capable parser such as Xerces 2.0. JDK 1.4 or < do not fully support XSD
+ * Note: full XSD support requires JDK 5.0 or a capable parser such as Xerces 2.0. JDK 1.4 or less do not fully support XSD
* out of the box. To use this implementation on JDK 1.4 make sure Xerces is available in your classpath or disable XSD
* validation by {@link #setValidating(boolean) setting the validating property to false}.
*
diff --git a/spring-webflow/src/main/java/org/springframework/webflow/executor/FlowExecutorImpl.java b/spring-webflow/src/main/java/org/springframework/webflow/executor/FlowExecutorImpl.java
index d6b37f17..2a6635b2 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/executor/FlowExecutorImpl.java
+++ b/spring-webflow/src/main/java/org/springframework/webflow/executor/FlowExecutorImpl.java
@@ -39,8 +39,8 @@ import org.springframework.webflow.execution.repository.FlowExecutionRepository;
* This object is a facade or entry point into the Spring Web Flow execution system and makes the overall system easier
* to use. The name executor was chosen as executors drive executions.
*
- * Commonly used configurable properties
*
+ * Commonly used configurable properties
*
* | name |
* description |
@@ -62,8 +62,7 @@ import org.springframework.webflow.execution.repository.FlowExecutionRepository;
* None |
*
*
- *
- *
+ *
* @see FlowDefinitionLocator
* @see FlowExecutionFactory
* @see FlowExecutionRepository
@@ -191,4 +190,4 @@ public class FlowExecutorImpl implements FlowExecutor {
.toString());
}
-}
+}