You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2006/05/10 17:54:24 UTC

svn commit: r405785 [13/20] - in /beehive/trunk/netui: external/struts/ external/struts/legacy/jakarta-struts-1.1-lib/ src/bootstrap/ src/bootstrap/org/apache/beehive/netui/tools/tld/xdoclet/ src/compiler-apt/ src/compiler-apt/META-INF/services/ src/co...

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/content/values/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/content/values/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/content/values/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/content/values/Controller.java Wed May 10 08:49:42 2006
@@ -1,80 +1,80 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.content.values;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-public class Controller extends PageFlowController
-{
-    private String _nullValue = null;
-    
-    public String getNullValue() {
-        return _nullValue;
-    }
-    
-    public String getContent() {
-        return "content";
-    }
-    
-    public String getDefaultValue() {
-        return "default value";
-    }
-    
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-
-
-}
-@Jpf.ViewProperties(value = { 
-    "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
-    "<view-properties>", 
-    "<pageflow-object id='page:index.jsp'>", 
-    "  <property value='220' name='x'/>", 
-    "  <property value='100' name='y'/>", 
-    "</pageflow-object>", 
-    "<pageflow-object id='action:begin.do'>", 
-    "  <property value='80' name='x'/>", 
-    "  <property value='100' name='y'/>", 
-    "</pageflow-object>", 
-    "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
-    "  <property value='116,140,140,164' name='elbowsX'/>", 
-    "  <property value='92,92,92,92' name='elbowsY'/>", 
-    "  <property value='East_1' name='fromPort'/>", 
-    "  <property value='West_1' name='toPort'/>", 
-    "  <property value='index' name='label'/>", 
-    "</pageflow-object>", 
-    "</view-properties>"
-}
-    )
-interface VIEW_PROPERTIES
-{
-}
-
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.content.values;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+public class Controller extends PageFlowController
+{
+    private String _nullValue = null;
+    
+    public String getNullValue() {
+        return _nullValue;
+    }
+    
+    public String getContent() {
+        return "content";
+    }
+    
+    public String getDefaultValue() {
+        return "default value";
+    }
+    
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+
+
+}
+@Jpf.ViewProperties(value = { 
+    "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
+    "<view-properties>", 
+    "<pageflow-object id='page:index.jsp'>", 
+    "  <property value='220' name='x'/>", 
+    "  <property value='100' name='y'/>", 
+    "</pageflow-object>", 
+    "<pageflow-object id='action:begin.do'>", 
+    "  <property value='80' name='x'/>", 
+    "  <property value='100' name='y'/>", 
+    "</pageflow-object>", 
+    "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
+    "  <property value='116,140,140,164' name='elbowsX'/>", 
+    "  <property value='92,92,92,92' name='elbowsY'/>", 
+    "  <property value='East_1' name='fromPort'/>", 
+    "  <property value='West_1' name='toPort'/>", 
+    "  <property value='index' name='label'/>", 
+    "</pageflow-object>", 
+    "</view-properties>"
+}
+    )
+interface VIEW_PROPERTIES
+{
+}
+

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/content/values/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/content/values/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/core/attrset/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/core/attrset/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/core/attrset/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/core/attrset/Controller.java Wed May 10 08:49:42 2006
@@ -1,64 +1,64 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.core.attrset;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-@Jpf.ViewProperties(
-    value = { 
-        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
-        "<view-properties>", 
-        "<pageflow-object id='pageflow:/coretags/base/nullbinding/Controller.jpf'/>", 
-        "<pageflow-object id='action:begin.do'>", 
-        "  <property value='80' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='page:index.jsp'>", 
-        "  <property value='220' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
-        "  <property value='116,140,140,164' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='East_1' name='fromPort'/>", 
-        "  <property value='West_1' name='toPort'/>", 
-        "  <property value='index' name='label'/>", 
-        "</pageflow-object>", 
-        "</view-properties>"
-    }
-)
-public class Controller extends PageFlowController
-{
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-
-
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.core.attrset;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+@Jpf.ViewProperties(
+    value = { 
+        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
+        "<view-properties>", 
+        "<pageflow-object id='pageflow:/coretags/base/nullbinding/Controller.jpf'/>", 
+        "<pageflow-object id='action:begin.do'>", 
+        "  <property value='80' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='page:index.jsp'>", 
+        "  <property value='220' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
+        "  <property value='116,140,140,164' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='East_1' name='fromPort'/>", 
+        "  <property value='West_1' name='toPort'/>", 
+        "  <property value='index' name='label'/>", 
+        "</pageflow-object>", 
+        "</view-properties>"
+    }
+)
+public class Controller extends PageFlowController
+{
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+
+
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/core/attrset/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/core/attrset/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/error/nullbinding/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/error/nullbinding/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/error/nullbinding/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/error/nullbinding/Controller.java Wed May 10 08:49:42 2006
@@ -1,70 +1,70 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.error.nullbinding;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-@Jpf.ViewProperties(
-    value = { 
-        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
-        "<view-properties>", 
-        "<pageflow-object id='pageflow:/coretags/base/nullbinding/Controller.jpf'/>", 
-        "<pageflow-object id='action:begin.do'>", 
-        "  <property value='80' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='page:index.jsp'>", 
-        "  <property value='220' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
-        "  <property value='116,140,140,164' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='East_1' name='fromPort'/>", 
-        "  <property value='West_1' name='toPort'/>", 
-        "  <property value='index' name='label'/>", 
-        "</pageflow-object>", 
-        "</view-properties>"
-    }
-)
-public class Controller extends PageFlowController
-{
-    private String _nullValue = null;
-    
-    public String getNullValue() {
-        return _nullValue;
-    }
-    
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-
-
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.error.nullbinding;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+@Jpf.ViewProperties(
+    value = { 
+        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
+        "<view-properties>", 
+        "<pageflow-object id='pageflow:/coretags/base/nullbinding/Controller.jpf'/>", 
+        "<pageflow-object id='action:begin.do'>", 
+        "  <property value='80' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='page:index.jsp'>", 
+        "  <property value='220' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
+        "  <property value='116,140,140,164' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='East_1' name='fromPort'/>", 
+        "  <property value='West_1' name='toPort'/>", 
+        "  <property value='index' name='label'/>", 
+        "</pageflow-object>", 
+        "</view-properties>"
+    }
+)
+public class Controller extends PageFlowController
+{
+    private String _nullValue = null;
+    
+    public String getNullValue() {
+        return _nullValue;
+    }
+    
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+
+
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/error/nullbinding/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/error/nullbinding/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/fileupload/nullbinding/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/fileupload/nullbinding/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/fileupload/nullbinding/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/fileupload/nullbinding/Controller.java Wed May 10 08:49:42 2006
@@ -1,54 +1,54 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.fileupload.nullbinding;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-public class Controller extends PageFlowController
-{
-    private String _nullValue = null;
-    private Object[] _files = new Object[10];
-    
-    public String getNullValue() {
-        return _nullValue;
-    }
-    
-    public Object[] getFile() {
-        return _files;
-    }
-    public void setFile(Object[] b) {
-        _files = b;
-    }
-    
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-    
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.fileupload.nullbinding;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+public class Controller extends PageFlowController
+{
+    private String _nullValue = null;
+    private Object[] _files = new Object[10];
+    
+    public String getNullValue() {
+        return _nullValue;
+    }
+    
+    public Object[] getFile() {
+        return _files;
+    }
+    public void setFile(Object[] b) {
+        _files = b;
+    }
+    
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+    
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/fileupload/nullbinding/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/fileupload/nullbinding/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/form/bean/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/form/bean/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/form/bean/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/form/bean/Controller.java Wed May 10 08:49:42 2006
@@ -1,55 +1,55 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.form.bean;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-import org.apache.struts.action.ActionForm;
-
-@Jpf.Controller
-public class Controller extends PageFlowController
-{
-    private String _nullValue = null;
-
-    public String getNullValue() {
-        return _nullValue;
-    }
-
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-    
-    public static class FormBean extends ActionForm
-    {
-        private String type = "Default Type Value";
-
-        public String getType()
-        { return this.type; }
-
-        public void setType(String type)
-        { this.type = type; }
-    }
-    
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.form.bean;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+import org.apache.struts.action.ActionForm;
+
+@Jpf.Controller
+public class Controller extends PageFlowController
+{
+    private String _nullValue = null;
+
+    public String getNullValue() {
+        return _nullValue;
+    }
+
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+    
+    public static class FormBean extends ActionForm
+    {
+        private String type = "Default Type Value";
+
+        public String getType()
+        { return this.type; }
+
+        public void setType(String type)
+        { this.type = type; }
+    }
+    
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/bean/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/bean/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/form/beanerror/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/form/beanerror/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/form/beanerror/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/form/beanerror/Controller.java Wed May 10 08:49:42 2006
@@ -1,93 +1,93 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.form.beanerror;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-import java.io.Serializable;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-@Jpf.ViewProperties(
-    value = { 
-        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
-        "<view-properties>", 
-        "<pageflow-object id='pageflow:/coretags/form/bean/Controller.jpf'/>", 
-        "<pageflow-object id='action:begin.do'>", 
-        "  <property value='80' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='page:index.jsp'>", 
-        "  <property value='220' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
-        "  <property value='116,140,140,164' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='East_1' name='fromPort'/>", 
-        "  <property value='West_1' name='toPort'/>", 
-        "  <property value='index' name='label'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='action:${pageFlow.nullValue}.do'>", 
-        "  <property value='340' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='action-call:@page:index.jsp@#@action:begin.do@'>", 
-        "  <property value='184,150,150,116' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='West_1' name='fromPort'/>", 
-        "  <property value='East_1' name='toPort'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='formbean:FormBean'/>", 
-        "</view-properties>"
-    }
-)
-public class Controller extends PageFlowController
-{
-    private String _nullValue = null;
-
-    public String getNullValue() {
-        return _nullValue;
-    }
-
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-    
-    public static class FormBean implements Serializable
-    {
-        private String type = "Default Type Value";
-
-        public String getType()
-        { return this.type; }
-
-        public void setType(String type)
-        { this.type = type; }
-    }
-    
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.form.beanerror;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+import java.io.Serializable;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+@Jpf.ViewProperties(
+    value = { 
+        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
+        "<view-properties>", 
+        "<pageflow-object id='pageflow:/coretags/form/bean/Controller.jpf'/>", 
+        "<pageflow-object id='action:begin.do'>", 
+        "  <property value='80' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='page:index.jsp'>", 
+        "  <property value='220' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
+        "  <property value='116,140,140,164' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='East_1' name='fromPort'/>", 
+        "  <property value='West_1' name='toPort'/>", 
+        "  <property value='index' name='label'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='action:${pageFlow.nullValue}.do'>", 
+        "  <property value='340' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='action-call:@page:index.jsp@#@action:begin.do@'>", 
+        "  <property value='184,150,150,116' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='West_1' name='fromPort'/>", 
+        "  <property value='East_1' name='toPort'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='formbean:FormBean'/>", 
+        "</view-properties>"
+    }
+)
+public class Controller extends PageFlowController
+{
+    private String _nullValue = null;
+
+    public String getNullValue() {
+        return _nullValue;
+    }
+
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+    
+    public static class FormBean implements Serializable
+    {
+        private String type = "Default Type Value";
+
+        public String getType()
+        { return this.type; }
+
+        public void setType(String type)
+        { this.type = type; }
+    }
+    
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/beanerror/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/beanerror/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/form/cases/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/form/cases/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/form/cases/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/form/cases/Controller.java Wed May 10 08:49:42 2006
@@ -1,212 +1,212 @@
-package coretags.form.cases;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-import javax.servlet.ServletRequest;
-import javax.servlet.http.HttpSession;
-import java.io.Serializable;
-import java.util.Enumeration;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-public class Controller extends PageFlowController
-{
-    private String _action;
-    private String _text;
-    private String _textPage;
-    public BeanThree useBean;
-    private Bean _direct;
-
-    public String getAction()
-    {
-        return _action;
-    }
-
-    public String getText()
-    {
-        return _text;
-    }
-
-    public void setTextPage(String text) {
-        _textPage = text;
-	_text = text;
-    }
-
-    public String getTextPage() {
-        return _textPage;
-    }
-
-    @Jpf.Action(
-            forwards = {
-            @Jpf.Forward(name = "index", path = "index.jsp")
-            }
-            )
-    protected Forward begin()
-    {
-        _action = "begin";
-        return new Forward("index");
-    }
-
-    @Jpf.Action(
-            forwards = {
-            @Jpf.Forward(name = "index", path = "html.jsp")
-            }
-            )
-    protected Forward html()
-    {
-        _action = "html";
-        return new Forward("index");
-    }
-
-    @Jpf.Action(
-        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
-    protected Forward post(Bean postForm)
-    {
-        dumpRequest();
-        _action = "post";
-        _text = postForm.getText();
-        postForm.setText("");
-        return new Forward("index");
-    }
-
-    @Jpf.Action(
-        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
-    protected Forward postNoForm()
-    {
-        dumpRequest();
-        _action = "postNoForm";
-        return new Forward("index");
-    }
-
-    @Jpf.Action(
-        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
-    protected Forward postOverride(Bean postOverForm)
-    {
-        dumpRequest();
-        _action = "postOverride";
-        _text = postOverForm.getText();
-        postOverForm.setText("");
-        return new Forward("index");
-    }
-
-    @Jpf.Action(
-        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
-    protected Forward postOverrideNewForm(BeanTwo overNewForm)
-    {
-        dumpRequest();
-        _action = "postOverrideNewForm";
-        _text = overNewForm.getText();
-        overNewForm.setText("");
-        return new Forward("index");
-    }
-
-    @Jpf.Action(
-        useFormBean="useBean",
-        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
-    protected Forward postUseFormBean(BeanThree useForm)
-    {
-        dumpRequest();
-        _action = "useFormBean";
-        _text = useForm.getText();
-        return new Forward("index");
-    }
-
-    @Jpf.Action(
-        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
-    protected Forward postDirect(Bean directForm)
-    {
-        dumpRequest();
-        _action = "direct";
-        _text = directForm.getText();
-        directForm.setText("");
-        return new Forward("index");
-    }
-
-    /**
-     * Callback that is invoked when this controller instance is created.
-     */
-    protected void onCreate()
-    {
-	useBean = new BeanThree();
-        useBean.setText("Bean Defined");
-	
-	_direct = new Bean();
-        _direct.setText("Direct Defined");
-        getRequest().getSession().setAttribute("FormCases",_direct);
-    }
-
-    private void dumpRequest() {
-	// this is just for test purposes...so exit now
-	if (true)
-	    return;
-
-        System.err.println("**************************DUMP**************************");
-        ServletRequest req = getRequest();
-        Enumeration e = req.getParameterNames();
-        while (e.hasMoreElements()) {
-            Object o = e.nextElement();
-            System.err.println("Parameter:" + o);
-            String[] params = req.getParameterValues(o.toString());
-            for (int i=0;i<params.length;i++) {
-                System.err.println("\tValue: '" + params[i] + "'");
-            }
-        }
-    }
-
-    /**
-     * Callback that is invoked when this controller instance is destroyed.
-     */
-    protected void onDestroy(HttpSession session)
-    {
-	session.removeAttribute("FormCases");
-    }
-
-    public static class Bean implements Serializable
-    {
-        private String _text;
-
-        public String getText()
-        {
-            return _text;
-        }
-
-        public void setText(String value)
-        {
-            _text = value;
-        }
-    }
-
-    public static class BeanTwo implements Serializable
-    {
-        private String _text;
-
-        public String getText()
-        {
-            return _text;
-        }
-
-        public void setText(String value)
-        {
-            _text = value;
-        }
-    }
-
-    public static class BeanThree implements Serializable
-    {
-        private String _text;
-
-        public String getText()
-        {
-            return _text;
-        }
-
-        public void setText(String value)
-        {
-            _text = value;
-        }
-    }
-}
+package coretags.form.cases;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+import javax.servlet.ServletRequest;
+import javax.servlet.http.HttpSession;
+import java.io.Serializable;
+import java.util.Enumeration;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+public class Controller extends PageFlowController
+{
+    private String _action;
+    private String _text;
+    private String _textPage;
+    public BeanThree useBean;
+    private Bean _direct;
+
+    public String getAction()
+    {
+        return _action;
+    }
+
+    public String getText()
+    {
+        return _text;
+    }
+
+    public void setTextPage(String text) {
+        _textPage = text;
+	_text = text;
+    }
+
+    public String getTextPage() {
+        return _textPage;
+    }
+
+    @Jpf.Action(
+            forwards = {
+            @Jpf.Forward(name = "index", path = "index.jsp")
+            }
+            )
+    protected Forward begin()
+    {
+        _action = "begin";
+        return new Forward("index");
+    }
+
+    @Jpf.Action(
+            forwards = {
+            @Jpf.Forward(name = "index", path = "html.jsp")
+            }
+            )
+    protected Forward html()
+    {
+        _action = "html";
+        return new Forward("index");
+    }
+
+    @Jpf.Action(
+        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
+    protected Forward post(Bean postForm)
+    {
+        dumpRequest();
+        _action = "post";
+        _text = postForm.getText();
+        postForm.setText("");
+        return new Forward("index");
+    }
+
+    @Jpf.Action(
+        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
+    protected Forward postNoForm()
+    {
+        dumpRequest();
+        _action = "postNoForm";
+        return new Forward("index");
+    }
+
+    @Jpf.Action(
+        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
+    protected Forward postOverride(Bean postOverForm)
+    {
+        dumpRequest();
+        _action = "postOverride";
+        _text = postOverForm.getText();
+        postOverForm.setText("");
+        return new Forward("index");
+    }
+
+    @Jpf.Action(
+        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
+    protected Forward postOverrideNewForm(BeanTwo overNewForm)
+    {
+        dumpRequest();
+        _action = "postOverrideNewForm";
+        _text = overNewForm.getText();
+        overNewForm.setText("");
+        return new Forward("index");
+    }
+
+    @Jpf.Action(
+        useFormBean="useBean",
+        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
+    protected Forward postUseFormBean(BeanThree useForm)
+    {
+        dumpRequest();
+        _action = "useFormBean";
+        _text = useForm.getText();
+        return new Forward("index");
+    }
+
+    @Jpf.Action(
+        forwards = { @Jpf.Forward(name = "index", navigateTo = Jpf.NavigateTo.currentPage)})
+    protected Forward postDirect(Bean directForm)
+    {
+        dumpRequest();
+        _action = "direct";
+        _text = directForm.getText();
+        directForm.setText("");
+        return new Forward("index");
+    }
+
+    /**
+     * Callback that is invoked when this controller instance is created.
+     */
+    protected void onCreate()
+    {
+	useBean = new BeanThree();
+        useBean.setText("Bean Defined");
+	
+	_direct = new Bean();
+        _direct.setText("Direct Defined");
+        getRequest().getSession().setAttribute("FormCases",_direct);
+    }
+
+    private void dumpRequest() {
+	// this is just for test purposes...so exit now
+	if (true)
+	    return;
+
+        System.err.println("**************************DUMP**************************");
+        ServletRequest req = getRequest();
+        Enumeration e = req.getParameterNames();
+        while (e.hasMoreElements()) {
+            Object o = e.nextElement();
+            System.err.println("Parameter:" + o);
+            String[] params = req.getParameterValues(o.toString());
+            for (int i=0;i<params.length;i++) {
+                System.err.println("\tValue: '" + params[i] + "'");
+            }
+        }
+    }
+
+    /**
+     * Callback that is invoked when this controller instance is destroyed.
+     */
+    protected void onDestroy(HttpSession session)
+    {
+	session.removeAttribute("FormCases");
+    }
+
+    public static class Bean implements Serializable
+    {
+        private String _text;
+
+        public String getText()
+        {
+            return _text;
+        }
+
+        public void setText(String value)
+        {
+            _text = value;
+        }
+    }
+
+    public static class BeanTwo implements Serializable
+    {
+        private String _text;
+
+        public String getText()
+        {
+            return _text;
+        }
+
+        public void setText(String value)
+        {
+            _text = value;
+        }
+    }
+
+    public static class BeanThree implements Serializable
+    {
+        private String _text;
+
+        public String getText()
+        {
+            return _text;
+        }
+
+        public void setText(String value)
+        {
+            _text = value;
+        }
+    }
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/cases/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/cases/html.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/cases/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/form/errors/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/form/errors/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/form/errors/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/form/errors/Controller.java Wed May 10 08:49:42 2006
@@ -1,102 +1,102 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.form.errors;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-import java.io.Serializable;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-@Jpf.ViewProperties(
-    value = { 
-        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
-        "<view-properties>", 
-        "<pageflow-object id='pageflow:/coretags/form/errors/Controller.jpf'/>", 
-        "<pageflow-object id='action:begin.do'>", 
-        "  <property value='80' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='page:index.jsp'>", 
-        "  <property value='220' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
-        "  <property value='116,140,140,164' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='East_1' name='fromPort'/>", 
-        "  <property value='West_1' name='toPort'/>", 
-        "  <property value='index' name='label'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='action:${pageFlow.nullValue}.do'>", 
-        "  <property value='340' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='action-call:@page:index.jsp@#@action:begin.do@'>", 
-        "  <property value='184,150,150,116' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='West_1' name='fromPort'/>", 
-        "  <property value='East_1' name='toPort'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='action:badAction.do'>", 
-        "  <property value='360' name='x'/>", 
-        "  <property value='180' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='action-call:@page:index.jsp@#@action:badAction.do@'>", 
-        "  <property value='256,290,290,324' name='elbowsX'/>", 
-        "  <property value='92,92,172,172' name='elbowsY'/>", 
-        "  <property value='East_1' name='fromPort'/>", 
-        "  <property value='West_1' name='toPort'/>", 
-        "</pageflow-object>", 
-        "</view-properties>"
-    }
-)
-public class Controller extends PageFlowController
-{
-    private String _nullValue = null;
-
-    public String getNullValue() {
-        return _nullValue;
-    }
-
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-
-    public static class FormBean implements Serializable
-    {
-        private String type;
-
-        public String getType()
-        { return this.type; }
-
-        public void setType(String type)
-        { this.type = type; }
-    }
-    
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.form.errors;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+import java.io.Serializable;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+@Jpf.ViewProperties(
+    value = { 
+        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
+        "<view-properties>", 
+        "<pageflow-object id='pageflow:/coretags/form/errors/Controller.jpf'/>", 
+        "<pageflow-object id='action:begin.do'>", 
+        "  <property value='80' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='page:index.jsp'>", 
+        "  <property value='220' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
+        "  <property value='116,140,140,164' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='East_1' name='fromPort'/>", 
+        "  <property value='West_1' name='toPort'/>", 
+        "  <property value='index' name='label'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='action:${pageFlow.nullValue}.do'>", 
+        "  <property value='340' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='action-call:@page:index.jsp@#@action:begin.do@'>", 
+        "  <property value='184,150,150,116' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='West_1' name='fromPort'/>", 
+        "  <property value='East_1' name='toPort'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='action:badAction.do'>", 
+        "  <property value='360' name='x'/>", 
+        "  <property value='180' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='action-call:@page:index.jsp@#@action:badAction.do@'>", 
+        "  <property value='256,290,290,324' name='elbowsX'/>", 
+        "  <property value='92,92,172,172' name='elbowsY'/>", 
+        "  <property value='East_1' name='fromPort'/>", 
+        "  <property value='West_1' name='toPort'/>", 
+        "</pageflow-object>", 
+        "</view-properties>"
+    }
+)
+public class Controller extends PageFlowController
+{
+    private String _nullValue = null;
+
+    public String getNullValue() {
+        return _nullValue;
+    }
+
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+
+    public static class FormBean implements Serializable
+    {
+        private String type;
+
+        public String getType()
+        { return this.type; }
+
+        public void setType(String type)
+        { this.type = type; }
+    }
+    
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/errors/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/errors/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/form/focus/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/form/focus/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/form/focus/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/form/focus/Controller.java Wed May 10 08:49:42 2006
@@ -1,79 +1,79 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.form.focus;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-import java.io.Serializable;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-public class Controller extends PageFlowController
-{
-    private String _results;
-    public String getResults() {
-	return _results;
-    }
-
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-        
-    @Jpf.Action(forwards = { 
-    @Jpf.Forward(name = "success", path = "index.jsp")
-	})
-    protected Forward post(FormBean bean)        {
-        Forward forward = new Forward("success");
-	_results = bean.getText1() + " " + bean.getText2() + " " +
-	    bean.getText3();
-	return forward;
-    }
-
-    public static class FormBean implements Serializable
-    {
-        private String _text1;
-        private String _text2;
-        private String _text3;
-
-        public String getText1()
-        { return _text1; }
-        public void setText1(String value)
-        { _text1 = value; }
-
-        public String getText2()
-        { return _text2; }
-        public void setText2(String value)
-        { _text2 = value; }
-
-        public String getText3()
-        { return _text3; }
-        public void setText3(String value)
-        { _text3 = value; }
-
-    }
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.form.focus;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+import java.io.Serializable;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+public class Controller extends PageFlowController
+{
+    private String _results;
+    public String getResults() {
+	return _results;
+    }
+
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+        
+    @Jpf.Action(forwards = { 
+    @Jpf.Forward(name = "success", path = "index.jsp")
+	})
+    protected Forward post(FormBean bean)        {
+        Forward forward = new Forward("success");
+	_results = bean.getText1() + " " + bean.getText2() + " " +
+	    bean.getText3();
+	return forward;
+    }
+
+    public static class FormBean implements Serializable
+    {
+        private String _text1;
+        private String _text2;
+        private String _text3;
+
+        public String getText1()
+        { return _text1; }
+        public void setText1(String value)
+        { _text1 = value; }
+
+        public String getText2()
+        { return _text2; }
+        public void setText2(String value)
+        { _text2 = value; }
+
+        public String getText3()
+        { return _text3; }
+        public void setText3(String value)
+        { _text3 = value; }
+
+    }
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/focus/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/focus/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/form/jspost/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/form/jspost/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/form/jspost/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/form/jspost/Controller.java Wed May 10 08:49:42 2006
@@ -1,64 +1,64 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.form.jspost;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-public class Controller extends PageFlowController
-{
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-
-
-
-        
-    @Jpf.Action(forwards = { 
-    @Jpf.Forward(name = "success", path = "index.jsp")
-})
-        protected Forward post()        {
-        Forward forward = new Forward("success");
-        
-                return forward;
-    }
-                }
-
-@Jpf.ViewProperties(value = { 
-    "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
-    "<view-properties>", 
-    "<pageflow-object id='action:begin.do'><property value='80' name='x'/><property value='100' name='y'/></pageflow-object>", 
-    "<pageflow-object id='page:index.jsp'><property value='220' name='x'/><property value='100' name='y'/></pageflow-object>", 
-    "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'><property value='116,140,140,164' name='elbowsX'/><property value='92,92,92,92' name='elbowsY'/><property value='East_1' name='fromPort'/><property value='West_1' name='toPort'/><property value='index' name='label'/></pageflow-object>", 
-    "<pageflow-object id='action:post.do'><property value='340' name='x'/><property value='100' name='y'/></pageflow-object>", 
-    "<pageflow-object id='forward:path#success#index.jsp#@action:post.do@'><property value='304,280,280,256' name='elbowsX'/><property value='92,92,92,92' name='elbowsY'/><property value='West_1' name='fromPort'/><property value='East_1' name='toPort'/><property value='success' name='label'/></pageflow-object>", 
-    "<pageflow-object id='action-call:@page:index.jsp@#@action:post.do@'><property value='256,280,280,304' name='elbowsX'/><property value='92,92,92,92' name='elbowsY'/><property value='East_1' name='fromPort'/><property value='West_1' name='toPort'/></pageflow-object>", 
-    "</view-properties>"
-})
-interface VIEW_PROPERTIES { }
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.form.jspost;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+public class Controller extends PageFlowController
+{
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+
+
+
+        
+    @Jpf.Action(forwards = { 
+    @Jpf.Forward(name = "success", path = "index.jsp")
+})
+        protected Forward post()        {
+        Forward forward = new Forward("success");
+        
+                return forward;
+    }
+                }
+
+@Jpf.ViewProperties(value = { 
+    "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
+    "<view-properties>", 
+    "<pageflow-object id='action:begin.do'><property value='80' name='x'/><property value='100' name='y'/></pageflow-object>", 
+    "<pageflow-object id='page:index.jsp'><property value='220' name='x'/><property value='100' name='y'/></pageflow-object>", 
+    "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'><property value='116,140,140,164' name='elbowsX'/><property value='92,92,92,92' name='elbowsY'/><property value='East_1' name='fromPort'/><property value='West_1' name='toPort'/><property value='index' name='label'/></pageflow-object>", 
+    "<pageflow-object id='action:post.do'><property value='340' name='x'/><property value='100' name='y'/></pageflow-object>", 
+    "<pageflow-object id='forward:path#success#index.jsp#@action:post.do@'><property value='304,280,280,256' name='elbowsX'/><property value='92,92,92,92' name='elbowsY'/><property value='West_1' name='fromPort'/><property value='East_1' name='toPort'/><property value='success' name='label'/></pageflow-object>", 
+    "<pageflow-object id='action-call:@page:index.jsp@#@action:post.do@'><property value='256,280,280,304' name='elbowsX'/><property value='92,92,92,92' name='elbowsY'/><property value='East_1' name='fromPort'/><property value='West_1' name='toPort'/></pageflow-object>", 
+    "</view-properties>"
+})
+interface VIEW_PROPERTIES { }

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/jspost/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/jspost/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/form/location/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/form/location/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/form/location/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/form/location/Controller.java Wed May 10 08:49:42 2006
@@ -1,61 +1,61 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.form.location;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-import java.io.Serializable;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-public class Controller extends PageFlowController
-{
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-        
-    @Jpf.Action(forwards = { 
-    @Jpf.Forward(name = "success", path = "index.jsp")
-	})
-    protected Forward post(FormBean bean)        {
-        Forward forward = new Forward("success");
-        
-                return forward;
-    }
-
-    public static class FormBean implements Serializable
-    {
-        private String _type = "Default Type Value";
-
-        public String getType()
-        { return _type; }
-
-        public void setType(String type)
-        { _type = type; }
-    }
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.form.location;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+import java.io.Serializable;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+public class Controller extends PageFlowController
+{
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+        
+    @Jpf.Action(forwards = { 
+    @Jpf.Forward(name = "success", path = "index.jsp")
+	})
+    protected Forward post(FormBean bean)        {
+        Forward forward = new Forward("success");
+        
+                return forward;
+    }
+
+    public static class FormBean implements Serializable
+    {
+        private String _type = "Default Type Value";
+
+        public String getType()
+        { return _type; }
+
+        public void setType(String type)
+        { _type = type; }
+    }
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/location/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/location/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/form/nullbinding/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/form/nullbinding/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/form/nullbinding/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/form/nullbinding/Controller.java Wed May 10 08:49:42 2006
@@ -1,99 +1,99 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.form.nullbinding;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-import java.io.Serializable;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-@Jpf.ViewProperties(
-    value = { 
-        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
-        "<view-properties>", 
-        "<pageflow-object id='pageflow:/coretags/form/nullbinding/Controller.jpf'/>", 
-        "<pageflow-object id='action:begin.do'>", 
-        "  <property value='80' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='page:index.jsp'>", 
-        "  <property value='220' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
-        "  <property value='116,140,140,164' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='East_1' name='fromPort'/>", 
-        "  <property value='West_1' name='toPort'/>", 
-        "  <property value='index' name='label'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='action-call:@page:index.jsp@#@action:begin.do@'>", 
-        "  <property value='184,150,150,116' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='West_1' name='fromPort'/>", 
-        "  <property value='East_1' name='toPort'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='action:${pageFlow.nullValue}.do'>", 
-        "  <property value='340' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='action-call:@page:index.jsp@#@action:${pageFlow.nullValue}.do@'>", 
-        "  <property value='256,280,280,304' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='East_1' name='fromPort'/>", 
-        "  <property value='West_1' name='toPort'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='formbean:FormBean'/>", 
-        "</view-properties>"
-    }
-)
-public class Controller extends PageFlowController
-{
-    private String _nullValue = null;
-
-    public String getNullValue() {
-        return _nullValue;
-    }
-
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-
-    public static class FormBean implements Serializable
-    {
-        private String type;
-
-        public String getType()
-        { return this.type; }
-
-        public void setType(String type)
-        { this.type = type; }
-    }
-    
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.form.nullbinding;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+import java.io.Serializable;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+@Jpf.ViewProperties(
+    value = { 
+        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
+        "<view-properties>", 
+        "<pageflow-object id='pageflow:/coretags/form/nullbinding/Controller.jpf'/>", 
+        "<pageflow-object id='action:begin.do'>", 
+        "  <property value='80' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='page:index.jsp'>", 
+        "  <property value='220' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
+        "  <property value='116,140,140,164' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='East_1' name='fromPort'/>", 
+        "  <property value='West_1' name='toPort'/>", 
+        "  <property value='index' name='label'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='action-call:@page:index.jsp@#@action:begin.do@'>", 
+        "  <property value='184,150,150,116' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='West_1' name='fromPort'/>", 
+        "  <property value='East_1' name='toPort'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='action:${pageFlow.nullValue}.do'>", 
+        "  <property value='340' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='action-call:@page:index.jsp@#@action:${pageFlow.nullValue}.do@'>", 
+        "  <property value='256,280,280,304' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='East_1' name='fromPort'/>", 
+        "  <property value='West_1' name='toPort'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='formbean:FormBean'/>", 
+        "</view-properties>"
+    }
+)
+public class Controller extends PageFlowController
+{
+    private String _nullValue = null;
+
+    public String getNullValue() {
+        return _nullValue;
+    }
+
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+
+    public static class FormBean implements Serializable
+    {
+        private String type;
+
+        public String getType()
+        { return this.type; }
+
+        public void setType(String type)
+        { this.type = type; }
+    }
+    
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/nullbinding/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/form/nullbinding/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: beehive/trunk/netui/test/webapps/drt/web/coretags/formatdate/errors/Controller.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/web/coretags/formatdate/errors/Controller.java?rev=405785&r1=405784&r2=405785&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/web/coretags/formatdate/errors/Controller.java (original)
+++ beehive/trunk/netui/test/webapps/drt/web/coretags/formatdate/errors/Controller.java Wed May 10 08:49:42 2006
@@ -1,100 +1,100 @@
-/*
- * Copyright 2004 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *     http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Header:$
- */
-package coretags.formatdate.errors;
-
-import org.apache.beehive.netui.pageflow.Forward;
-import org.apache.beehive.netui.pageflow.PageFlowController;
-import org.apache.beehive.netui.pageflow.annotations.Jpf;
-
-/**
- * This is the default controller for a blank web application.
- */
-@Jpf.Controller
-@Jpf.ViewProperties(
-    value = { 
-        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
-        "<view-properties>", 
-        "<pageflow-object id='pageflow:/coretags/base/nullbinding/Controller.jpf'/>", 
-        "<pageflow-object id='action:begin.do'>", 
-        "  <property value='80' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='page:index.jsp'>", 
-        "  <property value='220' name='x'/>", 
-        "  <property value='100' name='y'/>", 
-        "</pageflow-object>", 
-        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
-        "  <property value='116,140,140,164' name='elbowsX'/>", 
-        "  <property value='92,92,92,92' name='elbowsY'/>", 
-        "  <property value='East_1' name='fromPort'/>", 
-        "  <property value='West_1' name='toPort'/>", 
-        "  <property value='index' name='label'/>", 
-        "</pageflow-object>", 
-        "</view-properties>"
-    }
-)
-public class Controller extends PageFlowController
-{
-    private String _nullValue = null;
-    private String _textDate = "01/28/63";
-    private String _textAreaDate = "01/28/63";
-    private String _select;
-    
-    public String getNullValue() {
-        return _nullValue;
-    }
-    
-    public String getTextDate() {
-        return _textDate;
-    }
-    
-    public void setTextDate(String date) {
-        _textDate = date;
-    }
-    
-    public String getTextAreaDate() {
-        return _textAreaDate;
-    }
-    
-    public void setTextAreaDate(String date) {
-        _textAreaDate = date;
-    }
-
-    public String getSelect() {
-        return _select;
-    }
-    
-    public void setSelect(String date) {
-        _select = date;
-    }
-    
-    public Character getCharValue() {
-        return new Character('a');
-    }
-    
-    @Jpf.Action(
-        forwards={
-           @Jpf.Forward(name="index", path="index.jsp")
-        }
-    )
-    protected Forward begin()
-    {
-        return new Forward("index");
-    }
-
-}
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package coretags.formatdate.errors;
+
+import org.apache.beehive.netui.pageflow.Forward;
+import org.apache.beehive.netui.pageflow.PageFlowController;
+import org.apache.beehive.netui.pageflow.annotations.Jpf;
+
+/**
+ * This is the default controller for a blank web application.
+ */
+@Jpf.Controller
+@Jpf.ViewProperties(
+    value = { 
+        "<!-- This data is auto-generated. Hand-editing this section is not recommended. -->", 
+        "<view-properties>", 
+        "<pageflow-object id='pageflow:/coretags/base/nullbinding/Controller.jpf'/>", 
+        "<pageflow-object id='action:begin.do'>", 
+        "  <property value='80' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='page:index.jsp'>", 
+        "  <property value='220' name='x'/>", 
+        "  <property value='100' name='y'/>", 
+        "</pageflow-object>", 
+        "<pageflow-object id='forward:path#index#index.jsp#@action:begin.do@'>", 
+        "  <property value='116,140,140,164' name='elbowsX'/>", 
+        "  <property value='92,92,92,92' name='elbowsY'/>", 
+        "  <property value='East_1' name='fromPort'/>", 
+        "  <property value='West_1' name='toPort'/>", 
+        "  <property value='index' name='label'/>", 
+        "</pageflow-object>", 
+        "</view-properties>"
+    }
+)
+public class Controller extends PageFlowController
+{
+    private String _nullValue = null;
+    private String _textDate = "01/28/63";
+    private String _textAreaDate = "01/28/63";
+    private String _select;
+    
+    public String getNullValue() {
+        return _nullValue;
+    }
+    
+    public String getTextDate() {
+        return _textDate;
+    }
+    
+    public void setTextDate(String date) {
+        _textDate = date;
+    }
+    
+    public String getTextAreaDate() {
+        return _textAreaDate;
+    }
+    
+    public void setTextAreaDate(String date) {
+        _textAreaDate = date;
+    }
+
+    public String getSelect() {
+        return _select;
+    }
+    
+    public void setSelect(String date) {
+        _select = date;
+    }
+    
+    public Character getCharValue() {
+        return new Character('a');
+    }
+    
+    @Jpf.Action(
+        forwards={
+           @Jpf.Forward(name="index", path="index.jsp")
+        }
+    )
+    protected Forward begin()
+    {
+        return new Forward("index");
+    }
+
+}

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/formatdate/errors/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: beehive/trunk/netui/test/webapps/drt/web/coretags/formatdate/errors/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native