Fixed package declarations.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141168 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2004-04-11 20:25:16 +00:00
parent 2a9568f095
commit 60c2400e71
2 changed files with 4 additions and 4 deletions

View File

@ -13,14 +13,14 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.math.stat; package org.apache.commons.math.stat.inference;
import org.apache.commons.math.MathException; import org.apache.commons.math.MathException;
/** /**
* A collection of commonly used test statistics and statistical tests. * A collection of commonly used test statistics and statistical tests.
* *
* @version $Revision: 1.1 $ $Date: 2004/04/11 20:19:14 $ * @version $Revision: 1.2 $ $Date: 2004/04/11 20:25:16 $
*/ */
public interface TestStatistic { public interface TestStatistic {

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package org.apache.commons.math.stat; package org.apache.commons.math.stat.inference;
import java.io.Serializable; import java.io.Serializable;
@ -26,7 +26,7 @@ import org.apache.commons.math.distribution.ChiSquaredDistribution;
/** /**
* Implements test statistics defined in the TestStatistic interface. * Implements test statistics defined in the TestStatistic interface.
* *
* @version $Revision: 1.1 $ $Date: 2004/04/11 20:19:14 $ * @version $Revision: 1.2 $ $Date: 2004/04/11 20:25:16 $
*/ */
public class TestStatisticImpl implements TestStatistic, Serializable { public class TestStatisticImpl implements TestStatistic, Serializable {