View Javadoc

1   package XMLSteeringProperties;
2   
3   import SteeringProperties.SteeringProperties.BehaviorType;
4   import javax.xml.bind.annotation.XmlElement;
5   import javax.xml.bind.annotation.XmlRootElement;
6   
7   /**
8    *
9    * @author Marki
10   */
11  @XmlRootElement
12  public class XMLPathFollowingProperties {
13  
14      @XmlElement
15      public int repulsiveForce;
16      
17      @XmlElement
18      public int distance;
19  
20      @XmlElement
21      public int xTargetLocation;
22  
23      @XmlElement
24      public int yTargetLocation;
25  
26      @XmlElement
27      public int zTargetLocation;
28  
29      @XmlElement
30      public double regulatingForce;
31  
32      @XmlElement
33      public int projection;
34  
35      @XmlElement
36      public boolean active;
37  
38      @XmlElement
39      public double weight;
40  
41      @XmlElement
42      public BehaviorType behavior;
43  }