Added missing interface for IRollOverModel for JavaScript.
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/cc526bd5 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/cc526bd5 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/cc526bd5 Branch: refs/heads/master Commit: cc526bd5e1e8d7ef381f811e49c2c7a06364d22e Parents: e2eac34 Author: Peter Ent <[email protected]> Authored: Wed Oct 7 15:47:02 2015 -0400 Committer: Peter Ent <[email protected]> Committed: Wed Oct 7 15:47:02 2015 -0400 ---------------------------------------------------------------------- .../src/org/apache/flex/core/IRollOverModel.js | 58 ++++++++++++++++++++ 1 file changed, 58 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cc526bd5/frameworks/projects/Core/js/src/org/apache/flex/core/IRollOverModel.js ---------------------------------------------------------------------- diff --git a/frameworks/projects/Core/js/src/org/apache/flex/core/IRollOverModel.js b/frameworks/projects/Core/js/src/org/apache/flex/core/IRollOverModel.js new file mode 100644 index 0000000..059b1a1 --- /dev/null +++ b/frameworks/projects/Core/js/src/org/apache/flex/core/IRollOverModel.js @@ -0,0 +1,58 @@ +/** + * 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.IRollOverModel + * + * @fileoverview + * + * @suppress {checkTypes} + */ + +goog.provide('org.apache.flex.core.IRollOverModel'); + +goog.require('org.apache.flex.core.IBeadModel'); +goog.require('org.apache.flex.events.IEventDispatcher'); + + + +/** + * @interface + * @extends {org.apache.flex.core.IBeadModel} + * @extends {org.apache.flex.events.IEventDispatcher} + */ +org.apache.flex.core.IRollOverModel = +function() { +}; + + +Object.defineProperties(org.apache.flex.core.IRollOverModel.prototype, { + /** @export */ + rollOverIndex: { + get: function() {}, + set: function(value) {} + } +}); + + +/** + * Metadata + * + * @type {Object.<string, Array.<Object>>} + */ +org.apache.flex.core.IRollOverModel.prototype.FLEXJS_CLASS_INFO = { + names: [{ name: 'IRollOverModel', + qName: 'org.apache.flex.core.IRollOverModel'}], + interfaces: [org.apache.flex.core.IBead, org.apache.flex.events.IEventDispatcher] +};
