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/11/11 23:08:34 UTC

[18/28] git commit: [flex-asjs] [refs/heads/develop] - more missing classes

more missing classes


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

Branch: refs/heads/develop
Commit: 002bbd1eabd0d560d6648d6515f6e6535d19c5a0
Parents: ad25e3f
Author: Alex Harui <ah...@apache.org>
Authored: Fri Nov 7 13:22:14 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Nov 11 14:07:59 2014 -0800

----------------------------------------------------------------------
 .../src/org/apache/flex/core/ILayoutChild.js    | 39 +++++++++++++++++++
 .../src/org/apache/flex/core/IMXMLDocument.js   | 41 ++++++++++++++++++++
 .../FlexJS/src/org/apache/flex/html/ToolTip.js  | 40 +++++++++++++++++++
 3 files changed, 120 insertions(+)
----------------------------------------------------------------------


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

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

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/002bbd1e/frameworks/js/FlexJS/src/org/apache/flex/html/ToolTip.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/ToolTip.js b/frameworks/js/FlexJS/src/org/apache/flex/html/ToolTip.js
new file mode 100644
index 0000000..f1bf5a8
--- /dev/null
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/ToolTip.js
@@ -0,0 +1,40 @@
+/**
+ * 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.
+ */
+
+goog.provide('org.apache.flex.html.ToolTip');
+
+goog.require('org.apache.flex.html.Label');
+
+
+
+/**
+ * @constructor
+ * @implements {org.apache.flex.core.IContainer}
+ * @extends {org.apache.flex.core.ToolTipBase}
+ */
+org.apache.flex.html.ToolTip = function() {
+  org.apache.flex.html.ToolTip.base(this, 'constructor');
+};
+goog.inherits(org.apache.flex.html.ToolTip,
+    org.apache.flex.html.Label);
+
+
+/**
+ * Metadata
+ *
+ * @type {Object.<string, Array.<Object>>}
+ */
+org.apache.flex.html.ToolTip.prototype.FLEXJS_CLASS_INFO =
+    { names: [{ name: 'ToolTip',
+                qName: 'org.apache.flex.html.ToolTip' }]};