create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / optimization / services / SimulationModifierService.java
1 package net.sf.openrocket.optimization.services;
2
3 import java.util.Collection;
4
5 import net.sf.openrocket.document.OpenRocketDocument;
6 import net.sf.openrocket.optimization.rocketoptimization.SimulationModifier;
7
8 /**
9  * A service for generating simulation modifiers.
10  * 
11  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
12  */
13 public interface SimulationModifierService {
14         
15         /**
16          * Return all available simulation modifiers for this document.
17          * 
18          * @param document      the design document
19          * @return                      a collection of the rocket optimization parameters.
20          */
21         public Collection<SimulationModifier> getModifiers(OpenRocketDocument document);
22         
23
24 }