view move

This commit is contained in:
Keith Donald
2008-03-20 16:24:22 +00:00
parent 9af246da7c
commit 6beaf80b7a
9 changed files with 9 additions and 8 deletions

View File

@@ -10,7 +10,7 @@ import org.springframework.binding.convert.support.DefaultConversionService;
import org.springframework.util.StringUtils;
import org.springframework.webflow.engine.builder.support.FlowBuilderServices;
import org.springframework.webflow.expression.DefaultExpressionParserFactory;
import org.springframework.webflow.mvc.MvcViewFactoryCreator;
import org.springframework.webflow.mvc.view.MvcViewFactoryCreator;
import org.w3c.dom.Element;
/**

View File

@@ -1,4 +1,4 @@
package org.springframework.webflow.mvc;
package org.springframework.webflow.mvc.view;
import java.util.Collections;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package org.springframework.webflow.mvc;
package org.springframework.webflow.mvc.view;
import org.springframework.binding.expression.Expression;
import org.springframework.context.ApplicationContext;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.mvc;
package org.springframework.webflow.mvc.view;
import java.io.IOException;
import java.util.HashMap;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.mvc;
package org.springframework.webflow.mvc.view;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package org.springframework.webflow.mvc;
package org.springframework.webflow.mvc.view;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package org.springframework.webflow.mvc;
package org.springframework.webflow.mvc.view;
import java.util.Iterator;
import java.util.List;

View File

@@ -13,7 +13,7 @@ import org.springframework.webflow.engine.builder.ViewFactoryCreator;
import org.springframework.webflow.engine.builder.support.FlowBuilderServices;
import org.springframework.webflow.execution.Action;
import org.springframework.webflow.execution.ViewFactory;
import org.springframework.webflow.mvc.MvcViewFactoryCreator;
import org.springframework.webflow.mvc.view.MvcViewFactoryCreator;
public class FlowBuilderServicesBeanDefinitionParserTests extends TestCase {

View File

@@ -25,6 +25,7 @@ import org.springframework.web.servlet.ViewResolver;
import org.springframework.webflow.execution.Event;
import org.springframework.webflow.execution.View;
import org.springframework.webflow.execution.ViewFactory;
import org.springframework.webflow.mvc.view.MvcViewFactoryCreator;
import org.springframework.webflow.test.GeneratedFlowExecutionKey;
import org.springframework.webflow.test.MockExternalContext;
import org.springframework.webflow.test.MockRequestContext;