X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fnet%2Fsf%2Fopenrocket%2Foptimization%2Fgeneral%2FParallelFunctionCache.java;h=05dcba23e2f104b5a904aff45f1bc2f70153b102;hb=2f9b65cd53e9cbe4fc51587b2d672e78ead10a9e;hp=c5b34a5246d2c23aa44929abcf6cbabe748cb85c;hpb=90e98a95b548c88efd882e8e74bc4b36dd9af8b7;p=debian%2Fopenrocket diff --git a/src/net/sf/openrocket/optimization/general/ParallelFunctionCache.java b/src/net/sf/openrocket/optimization/general/ParallelFunctionCache.java index c5b34a52..05dcba23 100644 --- a/src/net/sf/openrocket/optimization/general/ParallelFunctionCache.java +++ b/src/net/sf/openrocket/optimization/general/ParallelFunctionCache.java @@ -35,6 +35,7 @@ public interface ParallelFunctionCache extends FunctionCache { * * @param points the points to wait for. * @throws InterruptedException if this thread or the computing thread was interrupted while waiting. + * @throws OptimizationException if an error preventing continuing the optimization occurs. */ public void waitFor(Collection points) throws InterruptedException, OptimizationException; @@ -44,7 +45,7 @@ public interface ParallelFunctionCache extends FunctionCache { * * @param point the point to wait for. * @throws InterruptedException if this thread or the computing thread was interrupted while waiting. - * @throws OptimizationException + * @throws OptimizationException if an error preventing continuing the optimization occurs. */ public void waitFor(Point point) throws InterruptedException, OptimizationException;