More typos
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/51bbbac8 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/51bbbac8 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/51bbbac8 Branch: refs/heads/develop Commit: 51bbbac84fea710ead3055749743789856c29725 Parents: 1c5e98d Author: Harbs <[email protected]> Authored: Wed Apr 6 20:35:02 2016 -0700 Committer: Harbs <[email protected]> Committed: Wed Apr 6 20:35:02 2016 -0700 ---------------------------------------------------------------------- manualtests/XMLTest/build.xml | 2 +- manualtests/XMLTest/src/ReflectionTest.mxml | 40 -------------------- manualtests/XMLTest/src/XMLTest.mxml | 40 ++++++++++++++++++++ .../XMLTest/src/controllers/MyController.as | 6 +-- 4 files changed, 44 insertions(+), 44 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/build.xml ---------------------------------------------------------------------- diff --git a/manualtests/XMLTest/build.xml b/manualtests/XMLTest/build.xml index 6370e2d..5f352b6 100644 --- a/manualtests/XMLTest/build.xml +++ b/manualtests/XMLTest/build.xml @@ -21,7 +21,7 @@ <project name="xmltest" default="main" basedir="."> <property name="FLEXJS_HOME" location="../.."/> - <property name="example" value="ReflectionTest" /> + <property name="example" value="XMLTest" /> <property environment="env"/> <property file="${FLEXJS_HOME}/build.properties"/> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/src/ReflectionTest.mxml ---------------------------------------------------------------------- diff --git a/manualtests/XMLTest/src/ReflectionTest.mxml b/manualtests/XMLTest/src/ReflectionTest.mxml deleted file mode 100644 index 27e97b5..0000000 --- a/manualtests/XMLTest/src/ReflectionTest.mxml +++ /dev/null @@ -1,40 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!--- -// -// Licensed to the Apache Software Foundation (ASF) under one or more -// contributor license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright ownership. -// The ASF licenses this file to You 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. -// -//////////////////////////////////////////////////////////////////////////////// ---> -<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009" - xmlns:local="*" - xmlns:models="models.*" - xmlns:controllers="controllers.*" - xmlns:js="library://ns.apache.org/flexjs/basic" - > - - <js:valuesImpl> - <js:SimpleCSSValuesImpl /> - </js:valuesImpl> - <js:controller> - <controllers:MyController /> - </js:controller> - <js:model> - <models:MyModel /> - </js:model> - <js:initialView> - <local:MyInitialView /> - </js:initialView> -</js:Application> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/src/XMLTest.mxml ---------------------------------------------------------------------- diff --git a/manualtests/XMLTest/src/XMLTest.mxml b/manualtests/XMLTest/src/XMLTest.mxml new file mode 100644 index 0000000..27e97b5 --- /dev/null +++ b/manualtests/XMLTest/src/XMLTest.mxml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<!--- +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You 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. +// +//////////////////////////////////////////////////////////////////////////////// +--> +<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009" + xmlns:local="*" + xmlns:models="models.*" + xmlns:controllers="controllers.*" + xmlns:js="library://ns.apache.org/flexjs/basic" + > + + <js:valuesImpl> + <js:SimpleCSSValuesImpl /> + </js:valuesImpl> + <js:controller> + <controllers:MyController /> + </js:controller> + <js:model> + <models:MyModel /> + </js:model> + <js:initialView> + <local:MyInitialView /> + </js:initialView> +</js:Application> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/src/controllers/MyController.as ---------------------------------------------------------------------- diff --git a/manualtests/XMLTest/src/controllers/MyController.as b/manualtests/XMLTest/src/controllers/MyController.as index 81eb963..679d638 100644 --- a/manualtests/XMLTest/src/controllers/MyController.as +++ b/manualtests/XMLTest/src/controllers/MyController.as @@ -31,12 +31,12 @@ package controllers { if (app) { - this.app = app as ReflectionTest; + this.app = app as XMLTest; app.addEventListener("viewChanged", viewChangeHandler); } } - private var app:ReflectionTest; + private var app:XMLTest; private function viewChangeHandler(event:Event):void { @@ -44,7 +44,7 @@ package controllers public function setDocument(document:Object, id:String = null):void { - this.app = document as ReflectionTest; + this.app = document as XMLTest; app.addEventListener("viewChanged", viewChangeHandler); }
