]> source.dussan.org Git - poi.git/commitdiff
Add missing license headers, and a few javadoc tweaks while working on those files
authorNick Burch <nick@apache.org>
Tue, 25 Jun 2013 22:04:49 +0000 (22:04 +0000)
committerNick Burch <nick@apache.org>
Tue, 25 Jun 2013 22:04:49 +0000 (22:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1496652 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/formula/functions/Code.java
src/java/org/apache/poi/ss/formula/functions/Complex.java
src/java/org/apache/poi/ss/formula/functions/EDate.java
src/java/org/apache/poi/ss/formula/functions/Finance.java
src/java/org/apache/poi/ss/formula/functions/Quotient.java
src/testcases/org/apache/poi/ss/formula/functions/TestEDate.java

index 6601026488fcafdbcd940b256eeccbd865d616b5..c82bff7547bc8aad56f9ec79084f3d23f4b670a5 100644 (file)
@@ -1,3 +1,20 @@
+/* ====================================================================\r
+   Licensed to the Apache Software Foundation (ASF) under one or more\r
+   contributor license agreements.  See the NOTICE file distributed with\r
+   this work for additional information regarding copyright ownership.\r
+   The ASF licenses this file to You under the Apache License, Version 2.0\r
+   (the "License"); you may not use this file except in compliance with\r
+   the License.  You may obtain a copy of the License at\r
+\r
+       http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+==================================================================== */\r
+\r
 package org.apache.poi.ss.formula.functions;\r
 \r
 import org.apache.poi.ss.formula.eval.*;\r
index 51c1770b1dc9186ebb83fdd0646c7d56df4dbdf5..7f205f3ffe623c639cacc16d3db27624049bbc15 100644 (file)
@@ -1,3 +1,20 @@
+/* ====================================================================\r
+   Licensed to the Apache Software Foundation (ASF) under one or more\r
+   contributor license agreements.  See the NOTICE file distributed with\r
+   this work for additional information regarding copyright ownership.\r
+   The ASF licenses this file to You under the Apache License, Version 2.0\r
+   (the "License"); you may not use this file except in compliance with\r
+   the License.  You may obtain a copy of the License at\r
+\r
+       http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+==================================================================== */\r
+\r
 package org.apache.poi.ss.formula.functions;\r
 \r
 import org.apache.poi.ss.formula.OperationEvaluationContext;\r
index ca5778acb9ee2941e404831f6921c2697c5f74c5..22832690e3162f9666be18291bc9f590ea459dfa 100644 (file)
@@ -1,3 +1,20 @@
+/* ====================================================================
+   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.poi.ss.formula.functions;
 
 import org.apache.poi.ss.formula.OperationEvaluationContext;
@@ -7,6 +24,9 @@ import org.apache.poi.ss.usermodel.DateUtil;
 import java.util.Calendar;
 import java.util.Date;
 
+/**
+ * Implementation for Excel EDATE () function.
+ */
 public class EDate implements FreeRefFunction {
     public static final FreeRefFunction instance = new EDate();
 
index ab7a4009e56d81f00c1782e7f3417e2a414306ab..367438bfc2b9515979e1318e5e5a797a61249e4b 100644 (file)
@@ -1,10 +1,24 @@
-package org.apache.poi.ss.formula.functions;
+/* ====================================================================
+   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.poi.ss.formula.functions;
 
 /**
   * Implementation of the financial functions pmt, fv, ppmt, ipmt.
-  * 
-  * @author Mike Argyriou micharg@gmail.com
   */
 public class Finance {
 
index f1ed483ad5e13231713c7ac6749d265e206dd607..44d6286200b6f7aa8eb07ed8da4d9090b3dcc919 100644 (file)
@@ -1,8 +1,24 @@
+/* ====================================================================\r
+   Licensed to the Apache Software Foundation (ASF) under one or more\r
+   contributor license agreements.  See the NOTICE file distributed with\r
+   this work for additional information regarding copyright ownership.\r
+   The ASF licenses this file to You under the Apache License, Version 2.0\r
+   (the "License"); you may not use this file except in compliance with\r
+   the License.  You may obtain a copy of the License at\r
+\r
+       http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+==================================================================== */\r
+\r
 package org.apache.poi.ss.formula.functions;\r
 \r
 import org.apache.poi.ss.formula.eval.ValueEval;\r
 \r
-\r
 import org.apache.poi.ss.formula.eval.*;\r
 \r
 /**\r
@@ -19,8 +35,6 @@ import org.apache.poi.ss.formula.eval.*;
  *\r
  * If either enumerator/denominator is non numeric, QUOTIENT returns the #VALUE! error value.\r
  * If denominator is equals to zero, QUOTIENT returns the #DIV/0! error value.\r
- *\r
- * @author cedric dot walter @ gmail dot com\r
  */\r
 public class Quotient extends Fixed2ArgFunction {\r
 \r
index cf1943806d2af0572e428107c3174b227c817fec..96cc31c1becbc1ba511556ae175143027a7e7371 100644 (file)
@@ -1,3 +1,20 @@
+/* ====================================================================
+   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.poi.ss.formula.functions;
 
 import junit.framework.TestCase;