]> source.dussan.org Git - poi.git/commitdiff
Add missing xssf method
authorNick Burch <nick@apache.org>
Tue, 12 Aug 2008 08:58:47 +0000 (08:58 +0000)
committerNick Burch <nick@apache.org>
Tue, 12 Aug 2008 08:58:47 +0000 (08:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@685096 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFName.java

index fd5f544b18505526a2bb6afc19f14782e0a12959..5d6b7aec0c656983998399d9f361223b563fe055 100644 (file)
@@ -34,7 +34,11 @@ public class XSSFName implements Name {
                this.workbook = workbook;
                this.ctName = name;
        }
-
+       
+       public boolean isFunctionName() {
+               // TODO Figure out how HSSF does this, and do the same!
+               return false;
+       }
        /**
         * Returns the underlying named range object
         */