blob: e72ba307b78c07aa4a9a24453948bbb697b11f79 [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.
*/
/**
* controllers.MyController
*
* @fileoverview
*
* @suppress {checkTypes|accessControls}
*/
goog.provide('controllers.MyController');
goog.require('FlexJSTest_again');
goog.require('MyInitialView');
goog.require('models.MyModel');
goog.require('org.apache.flex.core.IDocument');
goog.require('org.apache.flex.utils.Language');
/**
* @constructor
* @implements {org.apache.flex.core.IDocument}
* @param {org.apache.flex.core.Application=} app
*/
controllers.MyController = function(app) {
app = typeof app !== 'undefined' ? app : null;
if (app) {
this.app = org.apache.flex.utils.Language.as(app, FlexJSTest_again);
app.addEventListener("viewChanged", org.apache.flex.utils.Language.closure(this.viewChangeHandler, this, 'viewChangeHandler'));
}
};
/**
* Prevent renaming of class. Needed for reflection.
*/
goog.exportSymbol('controllers.MyController', controllers.MyController);
/**
* @private
* @type {string}
*/
controllers.MyController.prototype.queryBegin = "http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20where%20symbol%20in%20(%22";
/**
* @private
* @type {string}
*/
controllers.MyController.prototype.queryEnd = "%22)%0A%09%09&env=http%3A%2F%2Fdatatables.org%2Falltables.env&format=json";
/**
* @private
* @type {FlexJSTest_again}
*/
controllers.MyController.prototype.app;
/**
* @private
* @param {org.apache.flex.events.Event} event
*/
controllers.MyController.prototype.viewChangeHandler = function(event) {
this.app.initialView.addEventListener("buttonClicked", org.apache.flex.utils.Language.closure(this.buttonClickHandler, this, 'buttonClickHandler'));
this.app.initialView.addEventListener("listChanged", org.apache.flex.utils.Language.closure(this.listChangedHandler, this, 'listChangedHandler'));
this.app.initialView.addEventListener("cityListChanged", org.apache.flex.utils.Language.closure(this.cityListChangeHandler, this, 'cityListChangeHandler'));
this.app.initialView.addEventListener("transferClicked", org.apache.flex.utils.Language.closure(this.transferClickHandler, this, 'transferClickHandler'));
this.app.initialView.addEventListener("comboBoxChanged", org.apache.flex.utils.Language.closure(this.comboBoxChangeHandler, this, 'comboBoxChangeHandler'));
};
/**
* @private
* @param {org.apache.flex.events.Event} event
*/
controllers.MyController.prototype.buttonClickHandler = function(event) {
var /** @type {string} */ sym = org.apache.flex.utils.Language.as(this.app.initialView, MyInitialView, true).symbol;
this.app.service.url = this.queryBegin + sym + this.queryEnd;
this.app.service.send();
this.app.service.addEventListener("complete", org.apache.flex.utils.Language.closure(this.completeHandler, this, 'completeHandler'));
};
/**
* @private
* @param {org.apache.flex.events.Event} event
*/
controllers.MyController.prototype.completeHandler = function(event) {
org.apache.flex.utils.Language.as(this.app.model, models.MyModel, true).labelText = org.apache.flex.utils.Language.as(this.app.collection.getItemAt(0), String);
};
/**
* @private
* @param {org.apache.flex.events.Event} event
*/
controllers.MyController.prototype.listChangedHandler = function(event) {
org.apache.flex.utils.Language.as(this.app.model, models.MyModel, true).labelText = org.apache.flex.utils.Language.as(this.app.initialView, MyInitialView, true).symbol;
};
/**
* @private
* @param {org.apache.flex.events.Event} event
*/
controllers.MyController.prototype.cityListChangeHandler = function(event) {
org.apache.flex.utils.Language.as(this.app.model, models.MyModel, true).labelText = org.apache.flex.utils.Language.as(this.app.initialView, MyInitialView, true).city;
};
/**
* @private
* @param {org.apache.flex.events.Event} event
*/
controllers.MyController.prototype.transferClickHandler = function(event) {
org.apache.flex.utils.Language.as(this.app.model, models.MyModel, true).labelText = org.apache.flex.utils.Language.as(this.app.initialView, MyInitialView, true).inputText;
};
/**
* @private
* @param {org.apache.flex.events.Event} event
*/
controllers.MyController.prototype.comboBoxChangeHandler = function(event) {
org.apache.flex.utils.Language.as(this.app.model, models.MyModel, true).labelText = org.apache.flex.utils.Language.as(this.app.initialView, MyInitialView, true).comboBoxValue;
};
/**
* @export
* @param {Object} document
* @param {string=} id
*/
controllers.MyController.prototype.setDocument = function(document, id) {
id = typeof id !== 'undefined' ? id : null;
this.app = org.apache.flex.utils.Language.as(document, FlexJSTest_again);
this.app.addEventListener("viewChanged", org.apache.flex.utils.Language.closure(this.viewChangeHandler, this, 'viewChangeHandler'));
};
/**
* Metadata
*
* @type {Object.<string, Array.<Object>>}
*/
controllers.MyController.prototype.FLEXJS_CLASS_INFO = { names: [{ name: 'MyController', qName: 'controllers.MyController', kind: 'class' }], interfaces: [org.apache.flex.core.IDocument] };
/**
* Reflection
*
* @return {Object.<string, Function>}
*/
controllers.MyController.prototype.FLEXJS_REFLECTION_INFO = function () {
return {
variables: function () {return {};},
accessors: function () {return {};},
methods: function () {
return {
'MyController': { type: '', declaredBy: 'controllers.MyController', parameters: function () { return [ { index: 1, type: 'org.apache.flex.core.Application', optional: true } ]; }},
'setDocument': { type: 'void', declaredBy: 'controllers.MyController', parameters: function () { return [ { index: 1, type: 'Object', optional: false },{ index: 2, type: 'String', optional: true } ]; }}
};
}
};
};