Add an interface to allow export of pvc motors
[sw/motorsim] / src / com / billkuker / rocketry / motorsim / CylindricalChamber.java
index d810008fa6ad2a49987b484ca527bc2d3be828f0..8405456ac5c04069e5200c86bea2e95b15186cfc 100644 (file)
@@ -3,8 +3,6 @@ package com.billkuker.rocketry.motorsim;
 import java.awt.Shape;\r
 import java.awt.geom.Area;\r
 import java.awt.geom.Rectangle2D;\r
-import java.beans.PropertyChangeEvent;\r
-import java.beans.PropertyChangeListener;\r
 \r
 import javax.measure.quantity.Length;\r
 import javax.measure.quantity.Pressure;\r
@@ -13,13 +11,13 @@ import javax.measure.unit.SI;
 \r
 import org.jscience.physics.amount.Amount;\r
 \r
-public class CylindricalChamber implements Chamber {\r
+public class CylindricalChamber implements Chamber, ICylindricalChamber {\r
        \r
        private Amount<Length> length = Amount.valueOf(200, SI.MILLIMETER);\r
        private Amount<Length> oD = Amount.valueOf(31, SI.MILLIMETER);\r
        private Amount<Length> iD = Amount.valueOf(30, SI.MILLIMETER);\r
 \r
-       public Amount<Pressure> burstPressure() {\r
+       public Amount<Pressure> getBurstPressure() {\r
                return null;\r
        }\r
 \r