]> source.dussan.org Git - poi.git/commitdiff
Rename test-source file to actual class name to avoid constant recompilations on...
authorDominik Stadler <centic@apache.org>
Mon, 18 Jan 2016 20:16:38 +0000 (20:16 +0000)
committerDominik Stadler <centic@apache.org>
Mon, 18 Jan 2016 20:16:38 +0000 (20:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1725336 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/ss/formula/functions/RefEvalImplementation.java [new file with mode: 0644]
src/testcases/org/apache/poi/ss/formula/functions/RefValueImplementation.java [deleted file]

diff --git a/src/testcases/org/apache/poi/ss/formula/functions/RefEvalImplementation.java b/src/testcases/org/apache/poi/ss/formula/functions/RefEvalImplementation.java
new file mode 100644 (file)
index 0000000..1a3fc1e
--- /dev/null
@@ -0,0 +1,68 @@
+/* ====================================================================\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.AreaEval;\r
+import org.apache.poi.ss.formula.eval.RefEval;\r
+import org.apache.poi.ss.formula.eval.ValueEval;\r
+\r
+final class RefEvalImplementation implements RefEval {\r
+\r
+    private final ValueEval value;\r
+\r
+    public RefEvalImplementation(ValueEval value) {\r
+        this.value = value;\r
+    }\r
+\r
+    @Override\r
+    public AreaEval offset(int relFirstRowIx, int relLastRowIx,\r
+            int relFirstColIx, int relLastColIx) {\r
+        throw new UnsupportedOperationException();\r
+    }\r
+\r
+    @Override\r
+    public ValueEval getInnerValueEval(int sheetIndex) {\r
+        return value;\r
+    }\r
+\r
+    @Override\r
+    public int getNumberOfSheets() {\r
+        return 1;\r
+    }\r
+\r
+    @Override\r
+    public int getFirstSheetIndex() {\r
+        return 0;\r
+    }\r
+\r
+    @Override\r
+    public int getLastSheetIndex() {\r
+        return 0;\r
+    }\r
+\r
+    @Override\r
+    public int getRow() {\r
+        throw new UnsupportedOperationException();\r
+    }\r
+\r
+    @Override\r
+    public int getColumn() {\r
+        throw new UnsupportedOperationException();\r
+    }\r
+\r
+}\r
diff --git a/src/testcases/org/apache/poi/ss/formula/functions/RefValueImplementation.java b/src/testcases/org/apache/poi/ss/formula/functions/RefValueImplementation.java
deleted file mode 100644 (file)
index 1a3fc1e..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/* ====================================================================\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.AreaEval;\r
-import org.apache.poi.ss.formula.eval.RefEval;\r
-import org.apache.poi.ss.formula.eval.ValueEval;\r
-\r
-final class RefEvalImplementation implements RefEval {\r
-\r
-    private final ValueEval value;\r
-\r
-    public RefEvalImplementation(ValueEval value) {\r
-        this.value = value;\r
-    }\r
-\r
-    @Override\r
-    public AreaEval offset(int relFirstRowIx, int relLastRowIx,\r
-            int relFirstColIx, int relLastColIx) {\r
-        throw new UnsupportedOperationException();\r
-    }\r
-\r
-    @Override\r
-    public ValueEval getInnerValueEval(int sheetIndex) {\r
-        return value;\r
-    }\r
-\r
-    @Override\r
-    public int getNumberOfSheets() {\r
-        return 1;\r
-    }\r
-\r
-    @Override\r
-    public int getFirstSheetIndex() {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public int getLastSheetIndex() {\r
-        return 0;\r
-    }\r
-\r
-    @Override\r
-    public int getRow() {\r
-        throw new UnsupportedOperationException();\r
-    }\r
-\r
-    @Override\r
-    public int getColumn() {\r
-        throw new UnsupportedOperationException();\r
-    }\r
-\r
-}\r