blob: dc88afc0fdac826b6b3e6b6c783a2224c8e6ff6b [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.flex.core.Application');
goog.require('org.apache.flex.html.Button');
/**
* @constructor
* @extends {org.apache.flex.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.flex.core.Application);
/**
* Prevent renaming of class. Needed for reflection.
*/
goog.exportSymbol('wildcard_import', wildcard_import);
/**
* @private
*/
wildcard_import.prototype.tmp = function() {
var /** @type {org.apache.flex.html.Button} */ myButton;
myButton = new org.apache.flex.html.Button();
};
/**
* Metadata
*
* @type {Object.<string, Array.<Object>>}
*/
wildcard_import.prototype.FLEXJS_CLASS_INFO = { names: [{ name: 'wildcard_import', qName: 'wildcard_import', kind: 'class' }] };
/**
* Reflection
*
* @return {Object.<string, Function>}
*/
wildcard_import.prototype.FLEXJS_REFLECTION_INFO = function () {
return {
variables: function () {return {};},
accessors: function () {return {};},
methods: function () {
return {
'wildcard_import': { type: '', declaredBy: 'wildcard_import'}
};
}
};
};