source: java/main/src/main/java/com/framsticks/model/NeuroDefinition.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 * @author Piotr Sniegowski
8 */
9@FramsClassAnnotation(id = "n", name = "NeuroDef")
10public class NeuroDefinition extends BaseNeuro implements ModelComponent {
11
12        @ParamAnnotation(id = "p")
13        public int part;
14
15        @ParamAnnotation(id = "j")
16        public int joint;
17
18        @ParamAnnotation(id = "d")
19        public String details;
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.