create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / file / rocksim / export / RocksimDesignDTO.java
1 package net.sf.openrocket.file.rocksim.export;
2
3 import net.sf.openrocket.file.rocksim.RocksimCommonConstants;
4
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8
9 /**
10  * High-level placeholder element for Rocksim.
11  */
12 @XmlAccessorType(XmlAccessType.FIELD)
13 public class RocksimDesignDTO {
14
15     @XmlElement(name = RocksimCommonConstants.ROCKET_DESIGN)
16     private RocketDesignDTO design;
17
18     /**
19      * Constructor.
20      */
21     public RocksimDesignDTO() {
22     }
23
24     /**
25      * Get the DTO.
26      *
27      * @return the DTO
28      */
29     public RocketDesignDTO getDesign() {
30         return design;
31     }
32
33     /**
34      * Set the DTO.
35      *
36      * @param theDesign  the DTO
37      */
38     public void setDesign(RocketDesignDTO theDesign) {
39         design = theDesign;
40     }
41 }