You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/09/25 18:04:14 UTC

[32/50] git commit: [flex-asjs] [refs/heads/develop] - add missing interfaces

add missing interfaces


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

Branch: refs/heads/develop
Commit: e5756a096f81e051ebaf3670307431fcc9e00170
Parents: c0f8b45
Author: Alex Harui <ah...@apache.org>
Authored: Tue Sep 23 09:50:11 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Sep 23 15:01:23 2014 -0700

----------------------------------------------------------------------
 .../src/org/apache/flex/core/IParentIUIBase.js  | 46 ++++++++++++++++++++
 .../org/apache/flex/core/IStyleableObject.js    | 46 ++++++++++++++++++++
 2 files changed, 92 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/e5756a09/frameworks/js/FlexJS/src/org/apache/flex/core/IParentIUIBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IParentIUIBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IParentIUIBase.js
new file mode 100644
index 0000000..1958f94
--- /dev/null
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IParentIUIBase.js
@@ -0,0 +1,46 @@
+/**
+ * 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.
+ */
+
+/**
+ * org.apache.flex.core.IParentIUIBase
+ *
+ * @fileoverview
+ *
+ * @suppress {checkTypes}
+ */
+
+goog.provide('org.apache.flex.core.IParentIUIBase');
+
+goog.require('org.apache.flex.core.IParent');
+goog.require('org.apache.flex.core.IUIBase');
+
+
+
+/**
+ * @interface
+ */
+org.apache.flex.core.IParentIUIBase = function() {
+};
+
+
+/**
+ * Metadata
+ *
+ * @type {Object.<string, Array.<Object>>}
+ */
+org.apache.flex.core.IParentIUIBase.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IParentIUIBase', qName: 'org.apache.flex.core.IParentIUIBase'}],
+  interfaces: [org.apache.flex.core.IParent,
+             org.apache.flex.core.IUIBase]
+};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/e5756a09/frameworks/js/FlexJS/src/org/apache/flex/core/IStyleableObject.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IStyleableObject.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IStyleableObject.js
new file mode 100644
index 0000000..eaaf5b4
--- /dev/null
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IStyleableObject.js
@@ -0,0 +1,46 @@
+/**
+ * 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.
+ */
+
+/**
+ * org.apache.flex.core.IStyleableObject
+ *
+ * @fileoverview
+ *
+ * @suppress {checkTypes}
+ */
+
+goog.provide('org.apache.flex.core.IStyleableObject');
+
+goog.require('org.apache.flex.events.IEventDispatcher');
+
+
+
+/**
+ * @interface
+ * @extends {org.apache.flex.events.IEventDispatcher}
+ */
+org.apache.flex.core.IStyleableObject = function() {
+};
+
+
+/**
+ * Metadata
+ *
+ * @type {Object.<string, Array.<Object>>}
+ */
+org.apache.flex.core.IStyleableObject.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IStyleableObject',
+    qName: 'org.apache.flex.core.IStyleableObject'}],
+  interfaces: [org.apache.flex.events.IEventDispatcher]
+};