1 package XMLSteeringProperties;
2
3 import SteeringProperties.SteeringProperties.BehaviorType;
4 import java.util.ArrayList;
5 import javax.xml.bind.annotation.XmlElement;
6 import javax.xml.bind.annotation.XmlRootElement;
7
8
9
10
11
12 @XmlRootElement
13 public class XMLTargetApproachingProperties {
14
15 @XmlElement
16 public ArrayList<XMLTarget_packet> targets;
17
18 @XmlElement
19 public boolean active;
20
21 @XmlElement
22 public double weight;
23
24 @XmlElement
25 public BehaviorType behavior;
26 }