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

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
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.