blob: aca551d4056181383bf11eba5236a5c475ed1287 [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.
*/
goog.provide('org.apache.royale.A');
goog.require('custom.TestImplementation');
/**
* @constructor
* @extends {custom.TestImplementation}
*/
org.apache.royale.A = function() {
var self = this;
org.apache.royale.A.base(this, 'constructor');
self.init();
};
goog.inherits(org.apache.royale.A, custom.TestImplementation);
/**
* @private
* @type {custom.TestImplementation}
*/
org.apache.royale.A.prototype._privateVar;
org.apache.royale.A.prototype.init = function() {
var self = this;
var /** @type {custom.TestImplementation} */ btn = new custom.TestImplementation();
self._privateVar = new custom.TestImplementation();
self.addEventListener("click", function() {
});
};
org.apache.royale.A.prototype.start = function() {
var self = this;
var /** @type {string} */ localVar = self._privateVar.label;
self.init();
doIt();
};