create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / file / RocketLoader.java
1 package net.sf.openrocket.file;
2
3 import java.io.File;
4 import java.io.InputStream;
5
6 import net.sf.openrocket.aerodynamics.WarningSet;
7 import net.sf.openrocket.document.OpenRocketDocument;
8
9 public interface RocketLoader {
10         
11         public OpenRocketDocument load(File source, MotorFinder motorFinder) throws RocketLoadException;
12         
13         public OpenRocketDocument load(InputStream source, MotorFinder motorFinder) throws RocketLoadException;
14         
15         public WarningSet getWarnings();
16         
17 }