source: java/main/src/main/java/com/framsticks/model/NeuroConnection.java @ 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: 585 bytes
Line 
1package com.framsticks.model;
2
3import com.framsticks.params.annotations.FramsClassAnnotation;
4import com.framsticks.params.annotations.ParamAnnotation;
5
6/**
7 * The Class NeuroConnection.
8 */
9@FramsClassAnnotation(id = "c", name = "NeuroConn")
10public class NeuroConnection implements ModelComponent {
11
12        @ParamAnnotation(id = "n1")
13        public int thisNeuro;
14
15        @ParamAnnotation(id = "n2")
16        public int connectedNeuro;
17
18        @ParamAnnotation(id = "w")
19        public double weight;
20
21        @ParamAnnotation(id = "i")
22        public String info;
23
24        @ParamAnnotation(id = "Vstyle")
25        public String visualizationStyle;
26
27}
Note: See TracBrowser for help on using the repository browser.