blob: 5d2f8c2cbda5b2258659dcbfd6300db46305bda0 [file] [log] [blame]
/**
* 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.
*/
/**
* wildcard_import
*
* @fileoverview
*
* @suppress {checkTypes|accessControls}
*/
goog.provide('wildcard_import');
goog.require('org.apache.royale.core.Application');
goog.require('org.apache.royale.html.Button');
/**
* @constructor
* @extends {org.apache.royale.core.Application}
*/
wildcard_import = function() {
wildcard_import.base(this, 'constructor');
/**
* @private
* @type {Array}
*/
this.mxmldd;
/**
* @private
* @type {Array}
*/
this.mxmldp;
};
goog.inherits(wildcard_import, org.apache.royale.core.Application);
/**
* @private
*/
wildcard_import.prototype.tmp = function() {
var /** @type {org.apache.royale.html.Button} */ myButton = null;
//var /** @type {org.apache.royale.html.Button} */ myButton = null;
myButton = new org.apache.royale.html.Button();
};
/**
* Metadata
*
* @type {Object.<string, Array.<Object>>}
*/
wildcard_import.prototype.ROYALE_CLASS_INFO = { names: [{ name: 'wildcard_import', qName: 'wildcard_import', kind: 'class' }] };
/**
* Reflection
*
* @return {Object.<string, Function>}
*/
wildcard_import.prototype.ROYALE_REFLECTION_INFO = function () {
return {
methods: function () {
return {
'wildcard_import': { type: '', declaredBy: 'wildcard_import'}
};
}
};
};
/**
* @const
* @type {number}
*/
wildcard_import.prototype.ROYALE_COMPILE_FLAGS = 9;