source: java/main/src/main/java/com/framsticks/model/Joint.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: 650 bytes
Line 
1package com.framsticks.model;
2
3import com.framsticks.params.annotations.FramsClassAnnotation;
4import com.framsticks.params.annotations.ParamAnnotation;
5
6/**
7 * The Class Joint.
8 *
9 * All accessors are used by ReflectionAccess.
10 */
11@FramsClassAnnotation(id = "j")
12public class Joint extends BaseJoint implements ModelComponent {
13
14        @ParamAnnotation(id = "i")
15        public String info;
16
17        @ParamAnnotation(id = "p1")
18        public int part1;
19
20        @ParamAnnotation(id = "p2")
21        public int part2;
22
23        @ParamAnnotation(id = "stam")
24        public double stamina;
25
26        @ParamAnnotation(id = "Vstyle")
27        public String visualizationStyle;
28
29        @ParamAnnotation
30        public double vr, vg, vb;
31
32}
Note: See TracBrowser for help on using the repository browser.