Repository: flex-asjs
Updated Branches:
refs/heads/develop 03dd92e2b -> 55b558ed4
Added Collection constants
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/55b558ed
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/55b558ed
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/55b558ed
Branch: refs/heads/develop
Commit: 55b558ed4c31a7af1e31062db44459d077219b9e
Parents: 03dd92e
Author: Harbs <harbs@in-tools.com>
Authored: Thu Jul 7 09:38:01 2016 +0300
Committer: Harbs <harbs@in-tools.com>
Committed: Thu Jul 7 09:38:01 2016 +0300
----------------------------------------------------------------------
.../src/main/flex/CollectionsClasses.as | 1 +
.../org/apache/flex/collections/Collection.as | 47 ++++++++++++++++++++
2 files changed, 48 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/55b558ed/frameworks/projects/Collections/src/main/flex/CollectionsClasses.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Collections/src/main/flex/CollectionsClasses.as b/frameworks/projects/Collections/src/main/flex/CollectionsClasses.as
index 58e601f..0c97e00 100644
--- a/frameworks/projects/Collections/src/main/flex/CollectionsClasses.as
+++ b/frameworks/projects/Collections/src/main/flex/CollectionsClasses.as
@@ -31,6 +31,7 @@ internal class CollectionsClasses
import org.apache.flex.collections.FlattenedList; FlattenedList;
import org.apache.flex.collections.HierarchicalData; HierarchicalData;
import org.apache.flex.collections.LazyCollection; LazyCollection;
+ import org.apache.flex.collections.Collection; Collection;
}
}
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/55b558ed/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/Collection.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/Collection.as
b/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/Collection.as
new file mode 100644
index 0000000..3fa3e10
--- /dev/null
+++ b/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/Collection.as
@@ -0,0 +1,47 @@
+package org.apache.flex.collections
+{
+ public class Collection
+ {
+
+ /**
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion FlexJS 0.0
+ */
+ public static const COLLECTION_CHANGED:String = "collectionChanged";
+
+ /**
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion FlexJS 0.0
+ */
+ public static const ITEM_ADDED:String = "itemAdded";
+
+ /**
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion FlexJS 0.0
+ */
+ public static const ITEM_REMOVED:String = "itemRemoved";
+
+ /**
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion FlexJS 0.0
+ */
+ public static const ITEM_UPDATED:String = "itemUpdated";
+
+
+ public function Collection()
+ {
+ }
+ }
+}
\ No newline at end of file
|