1 package XMLSteeringProperties; 2 3 import javax.xml.bind.annotation.XmlElement; 4 5 /** 6 * 7 * @author Marki 8 */ 9 public class XMLForcePoint { 10 11 @XmlElement 12 public int distance; 13 14 @XmlElement 15 public int forceValue; 16 17 @XmlElement 18 public boolean continues; 19 20 21 }