From 95fc482c331bfece26110bc3d7d51219b11fc0f7 Mon Sep 17 00:00:00 2001 From: Sebastien Brisard Date: Tue, 4 Dec 2012 06:41:57 +0000 Subject: [PATCH] Javadoc: warning about private methods being accessed through reflection in unit tests. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1416796 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/math3/special/Beta.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/math3/special/Beta.java b/src/main/java/org/apache/commons/math3/special/Beta.java index b1fb2a6a0..a60e0c636 100644 --- a/src/main/java/org/apache/commons/math3/special/Beta.java +++ b/src/main/java/org/apache/commons/math3/special/Beta.java @@ -257,7 +257,8 @@ public class Beta { /** * Returns the value of log Γ(a + b) for 1 ≤ a, b ≤ 2. Based on the * NSWC Library of Mathematics Subroutines double precision - * implementation, {@code DGSMLN}. + * implementation, {@code DGSMLN}. In {@link BetaTest#testLogGammaSum()}, + * this private method is accessed through reflection. * * @param a First argument. * @param b Second argument. @@ -288,7 +289,9 @@ public class Beta { /** * Returns the value of log[Γ(b) / Γ(a + b)] for a ≥ 0 and b ≥ 10. Based on * the NSWC Library of Mathematics Subroutines double precision - * implementation, {@code DLGDIV}. + * implementation, {@code DLGDIV}. In + * {@link BetaTest#testLogGammaMinusLogGammaSum()}, this private method is + * accessed through reflection. * * @param a First argument. * @param b Second argument. @@ -373,7 +376,9 @@ public class Beta { /** * Returns the value of Δ(p) + Δ(q) - Δ(p + q), with p, q ≥ 10. Based on * the NSWC Library of Mathematics Subroutines double precision - * implementation, {@code DBCORR}. + * implementation, {@code DBCORR}. In + * {@link BetaTest#testSumDeltaMinusDeltaSum()}, this private method is + * accessed through reflection. * * @param p First argument. * @param q Second argument.