source: js/viewer-f0/js/Structures/NeuroConn.js @ 143

Last change on this file since 143 was 143, checked in by mmichalski, 10 years ago

Load NeuroClass? from f0def.xml and load correct xml from server

File size: 267 bytes
Line 
1function NeuroConn() {
2}
3
4NeuroConn.prototype = new Model();
5
6NeuroConn.prototype.getDestination = function(){
7    return parseInt(this._properties["n1"]["VALUE"]);
8}
9
10NeuroConn.prototype.getSource = function(){
11    return parseInt(this._properties["n2"]["VALUE"]);
12}
Note: See TracBrowser for help on using the repository browser.