Repository: flex-asjs
Updated Branches:
  refs/heads/develop 41d3a14e2 -> 49585ec76


Checked these files in by accident. Do not need them.


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

Branch: refs/heads/develop
Commit: 49585ec7654858c7b33d63a2192bdfc9ac65210d
Parents: 41d3a14
Author: Peter Ent <[email protected]>
Authored: Thu Sep 21 09:37:56 2017 -0400
Committer: Peter Ent <[email protected]>
Committed: Thu Sep 21 09:37:56 2017 -0400

----------------------------------------------------------------------
 .../src/main/flex/models/MyDataGridModel.as     | 36 --------------------
 .../src/main/flex/models/MyPresentationModel.as | 30 ----------------
 .../src/main/flex/models/MyTextModel.as         | 36 --------------------
 3 files changed, 102 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49585ec7/examples/express/DataGridExample/src/main/flex/models/MyDataGridModel.as
----------------------------------------------------------------------
diff --git 
a/examples/express/DataGridExample/src/main/flex/models/MyDataGridModel.as 
b/examples/express/DataGridExample/src/main/flex/models/MyDataGridModel.as
deleted file mode 100644
index f8f22ac..0000000
--- a/examples/express/DataGridExample/src/main/flex/models/MyDataGridModel.as
+++ /dev/null
@@ -1,36 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  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.
-//
-////////////////////////////////////////////////////////////////////////////////
-package models
-{
-       import org.apache.flex.html.beads.models.DataGridModel;
-       
-       public class MyDataGridModel extends DataGridModel
-       {
-               public function MyDataGridModel()
-               {
-                       super();
-                       trace("This is my DataGrid model");
-               }
-               
-               override public function set columns(value:Array):void
-               {
-                       super.columns = value;
-               }
-       }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49585ec7/examples/express/DataGridExample/src/main/flex/models/MyPresentationModel.as
----------------------------------------------------------------------
diff --git 
a/examples/express/DataGridExample/src/main/flex/models/MyPresentationModel.as 
b/examples/express/DataGridExample/src/main/flex/models/MyPresentationModel.as
deleted file mode 100644
index d93d3f7..0000000
--- 
a/examples/express/DataGridExample/src/main/flex/models/MyPresentationModel.as
+++ /dev/null
@@ -1,30 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  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.
-//
-////////////////////////////////////////////////////////////////////////////////
-package models
-{
-       import org.apache.flex.html.beads.models.DataGridPresentationModel;
-       
-       public class MyPresentationModel extends DataGridPresentationModel
-       {
-               public function MyPresentationModel()
-               {
-                       super();
-               }
-       }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49585ec7/examples/express/DataGridExample/src/main/flex/models/MyTextModel.as
----------------------------------------------------------------------
diff --git 
a/examples/express/DataGridExample/src/main/flex/models/MyTextModel.as 
b/examples/express/DataGridExample/src/main/flex/models/MyTextModel.as
deleted file mode 100644
index 438a053..0000000
--- a/examples/express/DataGridExample/src/main/flex/models/MyTextModel.as
+++ /dev/null
@@ -1,36 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  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.
-//
-////////////////////////////////////////////////////////////////////////////////
-package models
-{
-       import org.apache.flex.html.beads.models.TextModel;
-       
-       public class MyTextModel extends TextModel
-       {
-               public function MyTextModel()
-               {
-                       trace("This is my text model");
-                       super();
-               }
-               
-               override public function set text(value:String):void
-               {
-                       super.text = value;
-               }
-       }
-}
\ No newline at end of file

Reply via email to