]> source.dussan.org Git - poi.git/commitdiff
Further workarounds for java being rubbish, by having a dedicated class to create...
authorNick Burch <nick@apache.org>
Sun, 16 Mar 2008 16:51:58 +0000 (16:51 +0000)
committerNick Burch <nick@apache.org>
Sun, 16 Mar 2008 16:51:58 +0000 (16:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@637610 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/CreationHelper.java [new file with mode: 0644]
src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/Cell.java
src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/CreationHelper.java [new file with mode: 0644]
src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/DataFormat.java
src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/Workbook.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCreationHelper.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDataFormat.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java

diff --git a/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/CreationHelper.java b/src/ooxml/interfaces-jdk14/org/apache/poi/ss/usermodel/CreationHelper.java
new file mode 100644 (file)
index 0000000..d9e545c
--- /dev/null
@@ -0,0 +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.poi.ss.usermodel;
+
+public interface CreationHelper {}
index 1a8fc2b9bc81d765a7fa6323d1c7d0ad23e1f13b..39113f59c74454267f50ab6f0ac5e11373641cba 100644 (file)
@@ -153,17 +153,6 @@ public interface Cell {
 
     String getCellFormula();
 
-    /**
-     * Creates a RichTextString, which you can then pass to
-     *  {@link #setCellValue(RichTextString)}. This is required
-     *  because Java is broken, and won't allow you to define
-     *  static methods or constructors on interfaces, and without
-     *  that there's no way to get a RichTextString without
-     *  creating the appropriate concrete class. 
-     * @param text The text to initialise the RichTextString with
-     */
-    RichTextString createRichTextString(String text);
-    
     /**
      * get the value of the cell as a number.  For strings we throw an exception.
      * For blank cells we return a 0.
diff --git a/src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/CreationHelper.java b/src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/CreationHelper.java
new file mode 100644 (file)
index 0000000..78fe632
--- /dev/null
@@ -0,0 +1,42 @@
+/* ====================================================================
+   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.usermodel;
+
+/**
+ * An object that handles instantiating concrete
+ *  classes of the various instances one needs for 
+ *  HSSF and XSSF.
+ * Works around a major shortcoming in Java, where we
+ *  can't have static methods on interfaces or abstract
+ *  classes.
+ * This allows you to get the appropriate class for
+ *  a given interface, without you having to worry
+ *  about if you're dealing with HSSF or XSSF, despite
+ *  Java being quite rubbish.
+ */
+public interface CreationHelper {
+    /**
+     * Creates a new RichTextString instance 
+     * @param text The text to initialise the RichTextString with
+     */
+    RichTextString createRichTextString(String text);
+    
+    /**
+     * Creates a new DataFormat instance
+     */
+    DataFormat createDataFormat();
+}
\ No newline at end of file
index ad60810519757f812882e7522fb66c9f60c653b6..3728541ef62bf2e48b45c314a9a6ea50eda4b06d 100644 (file)
 package org.apache.poi.ss.usermodel;
 
 public interface DataFormat {
-
     /**
      * get the format index that matches the given format string.
      * Creates a new format if one is not found.  Aliases text to the proper format.
      * @param format string matching a built in format
      * @return index of format.
      */
-
     short getFormat(String format);
 
     /**
@@ -33,7 +31,5 @@ public interface DataFormat {
      * @param index of a format
      * @return string represented at index of format or null if there is not a  format at that index
      */
-
     String getFormat(short index);
-
 }
\ No newline at end of file
index bafa6b792c928514424cdfc3eb2e440102989244..e66cf0e1d7839bb7c68fa8d4f0d15852eb776eb1 100644 (file)
@@ -455,4 +455,13 @@ public interface Workbook {
      */
     List getAllEmbeddedObjects();
 
+    /**
+     * Returns an object that handles instantiating concrete
+     *  classes of the various instances one needs for 
+     *  HSSF and XSSF.
+     * Works around a major shortcoming in Java, where we
+     *  can't have static methods on interfaces or abstract
+     *  classes.
+     */
+    CreationHelper getCreationHelper();
 }
\ No newline at end of file
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCreationHelper.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCreationHelper.java
new file mode 100644 (file)
index 0000000..7941a86
--- /dev/null
@@ -0,0 +1,43 @@
+/* ====================================================================
+   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.xssf.usermodel;
+
+import org.apache.poi.ss.usermodel.CreationHelper;
+import org.apache.poi.ss.usermodel.DataFormat;
+import org.apache.poi.ss.usermodel.RichTextString;
+
+public class XSSFCreationHelper implements CreationHelper {
+       private XSSFWorkbook workbook;
+       private XSSFDataFormat dataFormat;
+       XSSFCreationHelper(XSSFWorkbook wb) {
+               workbook = wb;
+               
+               // Create the things we only ever need one of
+               dataFormat = new XSSFDataFormat();
+       }
+       
+    /**
+     * Creates a new XSSFRichTextString for you.
+     */
+       public RichTextString createRichTextString(String text) {
+               return new XSSFRichTextString(text);
+       }
+       
+       public DataFormat createDataFormat() {
+               return dataFormat;
+       }
+}
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDataFormat.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDataFormat.java
new file mode 100644 (file)
index 0000000..837b7ca
--- /dev/null
@@ -0,0 +1,32 @@
+/* ====================================================================
+   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.xssf.usermodel;
+
+import org.apache.poi.ss.usermodel.DataFormat;
+
+/**
+ * TODO - figure out how this should really work for XSSF
+ */
+public class XSSFDataFormat implements DataFormat {
+       public short getFormat(String format) {
+               return -1;
+       }
+
+       public String getFormat(short index) {
+               return null;
+       }
+}
index 2f7442dac2d6650c3a745d8073752bda0d96775e..e3dd0806204a6e0f82c0da963fce39152f25122c 100644 (file)
@@ -27,6 +27,7 @@ import javax.xml.namespace.QName;
 
 import org.apache.poi.POIXMLDocument;
 import org.apache.poi.ss.usermodel.CellStyle;
+import org.apache.poi.ss.usermodel.CreationHelper;
 import org.apache.poi.ss.usermodel.DataFormat;
 import org.apache.poi.ss.usermodel.Font;
 import org.apache.poi.ss.usermodel.Name;
@@ -533,4 +534,7 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
         this.sharedStringSource = sharedStringSource;
     }
 
+    public CreationHelper getCreationHelper() {
+       return new XSSFCreationHelper(this);
+    }
 }