@metacell/geppetto-meta-core
Version:
The core functionality of geppetto-meta to build and simulate neuroscience data and models.
36 lines (35 loc) • 516 B
JavaScript
/**
* Client class use to augment a model with connection capabilities
*
* @module model/AConnectionCapability
* @author Matteo Cantarelli
*/
export default {
capabilityId: 'ConnectionCapability',
A: null,
B: null,
/**
* Get A
*/
getA: function getA() {
return this.A;
},
/**
* Get B
*/
getB: function getB() {
return this.B;
},
/**
* Set A
*/
setA: function setA(a) {
this.A = a;
},
/**
* Set B
*/
setB: function setB(b) {
this.B = b;
}
};