Fixed checkstyle errors: missing javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1054302 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-01-01 22:19:24 +00:00
parent c2d4022d3a
commit 66b2b5ca7d
3 changed files with 12 additions and 0 deletions

View File

@ -226,6 +226,9 @@ public class PascalDistributionImpl extends AbstractIntegerDistribution
return ( r * p ) / (pInv * pInv);
}
/**
* {@inheritDoc}
*/
@Override
public boolean isSupportUpperBoundInclusive() {
return false;

View File

@ -282,6 +282,9 @@ public class PoissonDistributionImpl extends AbstractIntegerDistribution
return getMean();
}
/**
* {@inheritDoc}
*/
@Override
public boolean isSupportUpperBoundInclusive() {
return true;

View File

@ -275,11 +275,17 @@ public class TDistributionImpl
return Double.NaN;
}
/**
* {@inheritDoc}
*/
@Override
public boolean isSupportLowerBoundInclusive() {
return false;
}
/**
* {@inheritDoc}
*/
@Override
public boolean isSupportUpperBoundInclusive() {
return false;