create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / file / openrocket / importt / DocumentLoadingContext.java
1 package net.sf.openrocket.file.openrocket.importt;
2
3 import net.sf.openrocket.file.MotorFinder;
4
5 public class DocumentLoadingContext {
6         
7         private int fileVersion;
8         private MotorFinder motorFinder;
9         
10         
11         public int getFileVersion() {
12                 return fileVersion;
13         }
14         
15         public void setFileVersion(int fileVersion) {
16                 this.fileVersion = fileVersion;
17         }
18         
19         public MotorFinder getMotorFinder() {
20                 return motorFinder;
21         }
22         
23         public void setMotorFinder(MotorFinder motorFinder) {
24                 this.motorFinder = motorFinder;
25         }
26         
27 }