View Javadoc

1   package XMLSteeringProperties;
2   
3   import SteeringProperties.LeaderFollowingProperties.LFtype;
4   import SteeringProperties.SteeringProperties.BehaviorType;
5   import javax.xml.bind.annotation.XmlElement;
6   import javax.xml.bind.annotation.XmlRootElement;
7   
8   /**
9    *
10   * @author Marki
11   */
12  @XmlRootElement
13  public class XMLLeaderFollowingProperties {
14  
15      @XmlElement
16      public int leaderForce;
17  
18      @XmlElement
19      public String leaderName;
20  
21      @XmlElement
22      public int distance;
23  
24      @XmlElement
25      public int forceDistance;
26  
27      @XmlElement
28      public LFtype myLFtype;
29  
30      @XmlElement
31      public boolean deceleration;
32  
33      @XmlElement
34      public double angle;
35  
36      @XmlElement
37      public boolean velocityMemory;
38  
39      @XmlElement
40      public int sizeOfMemory;
41  
42      @XmlElement
43      public boolean circumvention;
44  
45      @XmlElement
46      public boolean active;
47  
48      @XmlElement
49      public double weight;
50  
51      @XmlElement
52      public BehaviorType behavior;
53  }