switch out ViewBase for View

Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/324ce859
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/324ce859
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/324ce859

Branch: refs/heads/spark
Commit: 324ce8590049b62e296395b175c7b1185ac5a880
Parents: 562e54c
Author: Alex Harui <[email protected]>
Authored: Thu Jun 9 13:26:13 2016 -0700
Committer: Alex Harui <[email protected]>
Committed: Thu Jun 9 13:26:27 2016 -0700

----------------------------------------------------------------------
 manualtests/ContainerTest/src/MyInitialView.mxml       | 6 +++---
 manualtests/DataGridXcompile/src/MyInitialView.mxml    | 4 ++--
 manualtests/DateChooserExample/src/MyInitialView.mxml  | 4 ++--
 manualtests/EffectsExample/src/MyInitialView.mxml      | 4 ++--
 manualtests/FlexJSTest_HTML5/src/MyInitialView.mxml    | 4 ++--
 manualtests/FlexJSTest_Panel/src/MyInitialView.mxml    | 4 ++--
 manualtests/FlexJSTest_SVG/src/GraphicsView.mxml       | 4 ++--
 manualtests/FlexJSTest_SVG/src/MyInitialView.mxml      | 4 ++--
 manualtests/FlexJSTest_SVG/src/SkinsView.mxml          | 6 +++---
 manualtests/FlexJSTest_SVG/src/skins/Button_up.mxml    | 4 ++--
 manualtests/FlexJSTest_basic/src/MyInitialView.mxml    | 4 ++--
 manualtests/FlexJSTest_createjs/build.xml              | 2 +-
 manualtests/FlexJSTest_createjs/src/MyInitialView.mxml | 4 ++--
 manualtests/FlexJSTest_jquery/src/MyInitialView.mxml   | 4 ++--
 manualtests/FormExample/src/MyFormView.mxml            | 4 ++--
 manualtests/FormatExample/src/MyFormView.mxml          | 4 ++--
 manualtests/ImageTest/src/MyInitialView.mxml           | 4 ++--
 manualtests/ListsTest/src/FirstView.mxml               | 4 ++--
 manualtests/ProxyTest/src/MyInitialView.mxml           | 4 ++--
 manualtests/ReflectionTest/src/MyInitialView.mxml      | 4 ++--
 manualtests/RollEventsTest/src/RollEventsTest.mxml     | 4 ++--
 manualtests/XMLTest/src/MyInitialView.mxml             | 4 ++--
 22 files changed, 45 insertions(+), 45 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/ContainerTest/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/ContainerTest/src/MyInitialView.mxml 
b/manualtests/ContainerTest/src/MyInitialView.mxml
index a90db33..1243ef7 100644
--- a/manualtests/ContainerTest/src/MyInitialView.mxml
+++ b/manualtests/ContainerTest/src/MyInitialView.mxml
@@ -18,7 +18,7 @@
 //
 
////////////////////////////////////////////////////////////////////////////////
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:local="*"
                                xmlns:models="models.*"
                                xmlns:js="library://ns.apache.org/flexjs/basic" 
@@ -88,7 +88,7 @@
                ]]>
        </fx:Script>
        <js:beads>
-               <js:MXMLBeadViewBaseDataBinding />
+               <js:MXMLBeadViewDataBinding />
        </js:beads>
        
        <!-- FIRST COLUMN -->
@@ -185,4 +185,4 @@
        </js:Panel>
                        
                        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/DataGridXcompile/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/DataGridXcompile/src/MyInitialView.mxml 
b/manualtests/DataGridXcompile/src/MyInitialView.mxml
index 140a7f7..7b57be4 100644
--- a/manualtests/DataGridXcompile/src/MyInitialView.mxml
+++ b/manualtests/DataGridXcompile/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*"
                                xmlns:models="models.*"
@@ -80,4 +80,4 @@ limitations under the License.
                </customControls:beads>
        </customControls:DataGrid>
 
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/DateChooserExample/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/DateChooserExample/src/MyInitialView.mxml 
b/manualtests/DateChooserExample/src/MyInitialView.mxml
index 02132e7..546ea73 100644
--- a/manualtests/DateChooserExample/src/MyInitialView.mxml
+++ b/manualtests/DateChooserExample/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*" 
                                xmlns:models="models.*">
@@ -41,4 +41,4 @@ limitations under the License.
        
        <js:DateField id="dateField" x="450" y="90" />
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/EffectsExample/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/EffectsExample/src/MyInitialView.mxml 
b/manualtests/EffectsExample/src/MyInitialView.mxml
index 9fa98e3..74cfafb 100644
--- a/manualtests/EffectsExample/src/MyInitialView.mxml
+++ b/manualtests/EffectsExample/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*" 
                                xmlns:models="models.*" 
@@ -86,4 +86,4 @@ limitations under the License.
                </js:Container>         
        </js:Container>
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_HTML5/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_HTML5/src/MyInitialView.mxml 
b/manualtests/FlexJSTest_HTML5/src/MyInitialView.mxml
index b88b7ce..65a3c83 100644
--- a/manualtests/FlexJSTest_HTML5/src/MyInitialView.mxml
+++ b/manualtests/FlexJSTest_HTML5/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                
xmlns:html5="library://ns.apache.org/flexjs/html5" 
                           >
@@ -141,4 +141,4 @@ limitations under the License.
                </html5:beads>
        </html5:ComboBox>
     
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml 
b/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml
index 25323dc..843ff6c 100644
--- a/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml
+++ b/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                            initComplete="initControls()">
     <fx:Script>
@@ -141,4 +141,4 @@ limitations under the License.
        </js:Panel>
 
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_SVG/src/GraphicsView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_SVG/src/GraphicsView.mxml 
b/manualtests/FlexJSTest_SVG/src/GraphicsView.mxml
index e43c01e..7428331 100644
--- a/manualtests/FlexJSTest_SVG/src/GraphicsView.mxml
+++ b/manualtests/FlexJSTest_SVG/src/GraphicsView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:svg="library://ns.apache.org/flexjs/svg"
                                
initComplete="viewbase1_initCompleteHandler(event)"
@@ -324,4 +324,4 @@ limitations under the License.
                </js:fill>
        </js:Path>
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_SVG/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_SVG/src/MyInitialView.mxml 
b/manualtests/FlexJSTest_SVG/src/MyInitialView.mxml
index 33e0c29..a4aef49 100644
--- a/manualtests/FlexJSTest_SVG/src/MyInitialView.mxml
+++ b/manualtests/FlexJSTest_SVG/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                
xmlns:html5="library://ns.apache.org/flexjs/html5"
                                xmlns:svg="library://ns.apache.org/flexjs/svg"  
                        
@@ -55,4 +55,4 @@ limitations under the License.
        <html5:Label id="timerLabel" x="100" y="125" />
 
        <svg:TextButton text="SVG Button" x="100" y="175" width="100" 
height="30" click="startTimer()" />
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_SVG/src/SkinsView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_SVG/src/SkinsView.mxml 
b/manualtests/FlexJSTest_SVG/src/SkinsView.mxml
index 9fd701d..85ace4e 100644
--- a/manualtests/FlexJSTest_SVG/src/SkinsView.mxml
+++ b/manualtests/FlexJSTest_SVG/src/SkinsView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic" 
xmlns:skins="skins.*" xmlns:mx="library://ns.adobe.com/flex/mx"
                                
initComplete="viewbase1_initCompleteHandler(event)" >
        <fx:Script>
@@ -66,7 +66,7 @@ limitations under the License.
                <js:State name="disabled"/>
        </js:states>
        <!--<js:beads>
-               <js:ViewBaseDataBinding />
+               <js:ViewDataBinding />
        </js:beads>-->
        <js:Container x="0" y="0" >
                <js:Label text="MyButton" x="20" y="5" 
includeIn="{[up,down,over,disabled]}" />
@@ -100,4 +100,4 @@ limitations under the License.
                
        </js:Container>
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_SVG/src/skins/Button_up.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_SVG/src/skins/Button_up.mxml 
b/manualtests/FlexJSTest_SVG/src/skins/Button_up.mxml
index 0dca5c7..8583dbc 100644
--- a/manualtests/FlexJSTest_SVG/src/skins/Button_up.mxml
+++ b/manualtests/FlexJSTest_SVG/src/skins/Button_up.mxml
@@ -17,11 +17,11 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic">
        <js:Path x="0" y="300" width="200" height="100" data="M 100 350 q 150 
-300 300 0" >
                <js:fill>
                        <js:SolidColor color="#0000FF" alpha="0.5" />
                </js:fill>
        </js:Path>
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_basic/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_basic/src/MyInitialView.mxml 
b/manualtests/FlexJSTest_basic/src/MyInitialView.mxml
index 496741a..a6d54fb 100644
--- a/manualtests/FlexJSTest_basic/src/MyInitialView.mxml
+++ b/manualtests/FlexJSTest_basic/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic" 
                           >
     <fx:Script>
@@ -140,4 +140,4 @@ limitations under the License.
                </js:beads>
        </js:ComboBox>
     
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_createjs/build.xml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_createjs/build.xml 
b/manualtests/FlexJSTest_createjs/build.xml
index dd250a9..b8cda4e 100644
--- a/manualtests/FlexJSTest_createjs/build.xml
+++ b/manualtests/FlexJSTest_createjs/build.xml
@@ -56,7 +56,7 @@
     property="GOOG_HOME"
     value="${FLEXJS_HOME}/js/lib/google/closure-library"/>
     
-    <property name="extlib_arg" 
value="-external-library-path=${FALCONJX_HOME}/../externs/createjs/out/bin/createjs.swc"/>
+    <property name="extlib_arg" 
value="-external-library-path=${FALCONJX_HOME}/../externs/createjs/target/createjs.swc"/>
     
     <include file="${basedir}/../build_example.xml" />
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_createjs/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_createjs/src/MyInitialView.mxml 
b/manualtests/FlexJSTest_createjs/src/MyInitialView.mxml
index 6baacc0..8659424 100644
--- a/manualtests/FlexJSTest_createjs/src/MyInitialView.mxml
+++ b/manualtests/FlexJSTest_createjs/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<createjs:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<createjs:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic" 
                                
xmlns:createjs="library://ns.apache.org/flexjs/createjs"
                                >
@@ -55,4 +55,4 @@ limitations under the License.
        
        <createjs:CheckBox id="check1" x="10" y="10" text="Check Me" 
selected="true"/>
        
-</createjs:ViewBase>
+</createjs:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FlexJSTest_jquery/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FlexJSTest_jquery/src/MyInitialView.mxml 
b/manualtests/FlexJSTest_jquery/src/MyInitialView.mxml
index 6059cdf..b91d58b 100644
--- a/manualtests/FlexJSTest_jquery/src/MyInitialView.mxml
+++ b/manualtests/FlexJSTest_jquery/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                
xmlns:jquery="library://ns.apache.org/flexjs/jquery"
                           >
@@ -145,4 +145,4 @@ limitations under the License.
                </js:beads>
        </js:ComboBox>
     
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FormExample/src/MyFormView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FormExample/src/MyFormView.mxml 
b/manualtests/FormExample/src/MyFormView.mxml
index 894d7a2..190fbe5 100644
--- a/manualtests/FormExample/src/MyFormView.mxml
+++ b/manualtests/FormExample/src/MyFormView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*" 
                                xmlns:models="models.*" 
@@ -70,4 +70,4 @@ limitations under the License.
                </js:Container>         
        </js:Container>
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/FormatExample/src/MyFormView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/FormatExample/src/MyFormView.mxml 
b/manualtests/FormatExample/src/MyFormView.mxml
index d974bf5..d513fcb 100644
--- a/manualtests/FormatExample/src/MyFormView.mxml
+++ b/manualtests/FormatExample/src/MyFormView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*" 
                                xmlns:models="models.*" 
@@ -130,4 +130,4 @@ limitations under the License.
                
        </js:Container>
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/ImageTest/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/ImageTest/src/MyInitialView.mxml 
b/manualtests/ImageTest/src/MyInitialView.mxml
index 342abcc..8037448 100644
--- a/manualtests/ImageTest/src/MyInitialView.mxml
+++ b/manualtests/ImageTest/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*">
        <fx:Script>
@@ -42,4 +42,4 @@ limitations under the License.
                
        </js:Container>
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/ListsTest/src/FirstView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/ListsTest/src/FirstView.mxml 
b/manualtests/ListsTest/src/FirstView.mxml
index 4bfc146..c343c7a 100644
--- a/manualtests/ListsTest/src/FirstView.mxml
+++ b/manualtests/ListsTest/src/FirstView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*">
     <fx:Script>
@@ -60,4 +60,4 @@ limitations under the License.
        
        <js:Label id="pickLabel" x="250" y="20" width="200" />
 
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/ProxyTest/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/ProxyTest/src/MyInitialView.mxml 
b/manualtests/ProxyTest/src/MyInitialView.mxml
index 9b51ed8..e51ae0b 100644
--- a/manualtests/ProxyTest/src/MyInitialView.mxml
+++ b/manualtests/ProxyTest/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*" 
                                xmlns:models="models.*" 
@@ -64,4 +64,4 @@ limitations under the License.
                <js:TextButton text="Test" click="runTest()" />
        </js:Container>
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/ReflectionTest/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/ReflectionTest/src/MyInitialView.mxml 
b/manualtests/ReflectionTest/src/MyInitialView.mxml
index 9d9df84..95d6bf5 100644
--- a/manualtests/ReflectionTest/src/MyInitialView.mxml
+++ b/manualtests/ReflectionTest/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*" 
                                xmlns:models="models.*" 
@@ -107,4 +107,4 @@ limitations under the License.
                <js:TextButton text="Test" click="runTest()" />
        </js:Container>
        
-</js:ViewBase>
+</js:View>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/RollEventsTest/src/RollEventsTest.mxml
----------------------------------------------------------------------
diff --git a/manualtests/RollEventsTest/src/RollEventsTest.mxml 
b/manualtests/RollEventsTest/src/RollEventsTest.mxml
index 80e3e08..f36accd 100644
--- a/manualtests/RollEventsTest/src/RollEventsTest.mxml
+++ b/manualtests/RollEventsTest/src/RollEventsTest.mxml
@@ -39,7 +39,7 @@
        </fx:Style>
        
        <js:initialView>
-               <js:ViewBase>
+               <js:View>
                        <js:Container x="50" y="50" width="400" height="400" 
className="ContainerBackground">
                                <js:beads>
                                        <js:BasicLayout />
@@ -47,6 +47,6 @@
                                </js:beads>
                        </js:Container>
                        <js:Label id="output" x="500" y="50" text="roll here" />
-               </js:ViewBase>
+               </js:View>
        </js:initialView>
 </js:Application>

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/324ce859/manualtests/XMLTest/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/XMLTest/src/MyInitialView.mxml 
b/manualtests/XMLTest/src/MyInitialView.mxml
index 25803cd..efb4317 100644
--- a/manualtests/XMLTest/src/MyInitialView.mxml
+++ b/manualtests/XMLTest/src/MyInitialView.mxml
@@ -17,7 +17,7 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 
 -->
-<js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009";
+<js:View xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:js="library://ns.apache.org/flexjs/basic"
                                xmlns:local="*" 
                                xmlns:models="models.*" 
@@ -258,4 +258,4 @@ limitations under the License.
                <js:TextButton text="Test" click="runTest()" />
        </js:Container>
        
-</js:ViewBase>
+</js:View>

Reply via email to