joynr.proxy.BroadcastFilterParameters.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libjoynr-js Show documentation
Show all versions of libjoynr-js Show documentation
JOYnr JavaScript libjoynr-js
/*global joynr: true */
/*
* #%L
* %%
* Copyright (C) 2011 - 2015 BMW Car IT GmbH
* %%
* 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.
* #L%
*/
define("joynr/proxy/BroadcastFilterParameters", [
"joynr/util/UtilInternal",
"joynr/system/LoggerFactory"
], function(Util, LoggerFactory) {
/**
* Constructor of BroadcastFilterParameters object used for subscriptions in generated proxy objects
*
* @constructor
* @name BroadcastFilterParameters
*
* @param {Object}
* [filterParameters] the filterParameters object for the constructor call
*
* @returns {BroadcastFilterParameters} a BroadcastFilterParameters Object for subscriptions on broadcasts
*/
function BroadcastFilterParameters(filterParameterProperties) {
if (!(this instanceof BroadcastFilterParameters)) {
// in case someone calls constructor without new keyword (e.g. var c
// = Constructor({..}))
return new BroadcastFilterParameters(filterParameterProperties);
}
var log = LoggerFactory.getLogger("joynr.proxy.BroadcastFilterParameters");
/**
* @name BroadcastFilterParameters#_typeName
* @type String
* @field
*/
Util.objectDefineProperty(this, "_typeName", "joynr.BroadcastFilterParameters");
Util.checkPropertyIfDefined(filterParameterProperties, "Object", "filterParameters");
function makeSetterFunction(obj, parameterName) {
return function(arg) {
obj.filterParameters[parameterName] = arg;
return obj;
};
}
var parameterName;
var funcName;
for (parameterName in filterParameterProperties) {
if (filterParameterProperties.hasOwnProperty(parameterName)) {
funcName =
"set" + parameterName.charAt(0).toUpperCase() + parameterName.substring(1);
//filter[funcName] = makeSetterFunction(filter, parameterName);
Object.defineProperty(this, funcName, {
configurable : false,
writable : false,
enumerable : false,
value : makeSetterFunction(this, parameterName)
});
}
}
/**
* @name BroadcastFilterParameters#filterParameters
* @type Object
* @field
*/
this.filterParameters = {};
}
return BroadcastFilterParameters;
});
© 2015 - 2025 Weber Informatics LLC | Privacy Policy