You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2014/01/22 23:35:22 UTC

svn commit: r1560551 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/stat/interval/ test/java/org/apache/commons/math3/stat/interval/

Author: tn
Date: Wed Jan 22 22:35:21 2014
New Revision: 1560551

URL: http://svn.apache.org/r1560551
Log:
Add missing AL header.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/AgrestiCoullInterval.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/ClopperPearsonInterval.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/IntervalUtils.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/NormalApproximationInterval.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/WilsonScoreInterval.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/AgrestiCoullIntervalTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/ClopperPearsonIntervalTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/IntervalUtilsTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/NormalApproximationIntervalTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/WilsonScoreIntervalTest.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/AgrestiCoullInterval.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/AgrestiCoullInterval.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/AgrestiCoullInterval.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/AgrestiCoullInterval.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.apache.commons.math3.distribution.NormalDistribution;

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/ClopperPearsonInterval.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/ClopperPearsonInterval.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/ClopperPearsonInterval.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/ClopperPearsonInterval.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.apache.commons.math3.distribution.FDistribution;

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/IntervalUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/IntervalUtils.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/IntervalUtils.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/IntervalUtils.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.apache.commons.math3.exception.NotPositiveException;

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/NormalApproximationInterval.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/NormalApproximationInterval.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/NormalApproximationInterval.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/NormalApproximationInterval.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.apache.commons.math3.distribution.NormalDistribution;

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/WilsonScoreInterval.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/WilsonScoreInterval.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/WilsonScoreInterval.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/interval/WilsonScoreInterval.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.apache.commons.math3.distribution.NormalDistribution;

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/AgrestiCoullIntervalTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/AgrestiCoullIntervalTest.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/AgrestiCoullIntervalTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/AgrestiCoullIntervalTest.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.apache.commons.math3.stat.interval.AgrestiCoullInterval;

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/ClopperPearsonIntervalTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/ClopperPearsonIntervalTest.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/ClopperPearsonIntervalTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/ClopperPearsonIntervalTest.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.apache.commons.math3.stat.interval.BinomialConfidenceInterval;

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/IntervalUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/IntervalUtilsTest.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/IntervalUtilsTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/IntervalUtilsTest.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.junit.Assert;

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/NormalApproximationIntervalTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/NormalApproximationIntervalTest.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/NormalApproximationIntervalTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/NormalApproximationIntervalTest.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.apache.commons.math3.stat.interval.BinomialConfidenceInterval;

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/WilsonScoreIntervalTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/WilsonScoreIntervalTest.java?rev=1560551&r1=1560550&r2=1560551&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/WilsonScoreIntervalTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/interval/WilsonScoreIntervalTest.java Wed Jan 22 22:35:21 2014
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.math3.stat.interval;
 
 import org.apache.commons.math3.stat.interval.BinomialConfidenceInterval;