blob: 9ec68e4d241d7a93e15b58b1e63d7c0873a8666c [file] [log] [blame]
/*
* Copyright 2011 Research In Motion Limited.
*
* 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.
*/
var transport = require('ripple/platform/webworks.core/2.0.0/client/transport'),
app = require('ripple/app'),
_uri = "blackberry/app/",
_self = {};
_self.__defineGetter__("author", function () {
return app.getInfo().author;
});
_self.__defineGetter__("authorEmail", function () {
return app.getInfo().authorEmail;
});
_self.__defineGetter__("authorURL", function () {
return app.getInfo().authorURL;
});
_self.__defineGetter__("copyright", function () {
return app.getInfo().copyright;
});
_self.__defineGetter__("description", function () {
return app.getInfo().description;
});
_self.__defineGetter__("id", function () {
return app.getInfo().id;
});
_self.__defineGetter__("license", function () {
return app.getInfo().license;
});
_self.__defineGetter__("licenseURL", function () {
return app.getInfo().licenseURL;
});
_self.__defineGetter__("name", function () {
return app.getInfo().name;
});
_self.__defineGetter__("version", function () {
return app.getInfo().version;
});
module.exports = _self;