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