From: Said Ryan Ackley Date: Mon, 1 Jul 2002 20:29:22 +0000 (+0000) Subject: Added a couple of functions X-Git-Tag: REL_1_10~272 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4af8abbe17948b84582844a428be3b263cb6b361;p=poi.git Added a couple of functions git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352737 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/scratchpad/src/org/apache/poi/hdf/model/util/ParsingState.java b/src/scratchpad/src/org/apache/poi/hdf/model/util/ParsingState.java index d2ecd7239b..89e7e5e8d9 100644 --- a/src/scratchpad/src/org/apache/poi/hdf/model/util/ParsingState.java +++ b/src/scratchpad/src/org/apache/poi/hdf/model/util/ParsingState.java @@ -4,7 +4,7 @@ import org.apache.poi.hdf.model.hdftypes.FormattedDiskPage; public class ParsingState { - int _currentPage; + //int _numPages;// = charPlcf.length(); int _currentPageIndex = 0; FormattedDiskPage _fkp;// = new CHPFormattedDiskPage(fkp); @@ -13,15 +13,12 @@ public class ParsingState public ParsingState(int firstPage, FormattedDiskPage fkp) { - _currentPage = firstPage; - //_numPages = numPages; _fkp = fkp; - //_currentArraySize = fkp.size(); - } - public int getCurrentPage() - { - return _currentPage; } + //public int getCurrentPage() + //{ + // return _currentPage; + //} //public int getNumPages() //{ // return _numPages; @@ -39,10 +36,9 @@ public class ParsingState return _currentPropIndex; } - public void setState(int currentPage, int currentPageIndex, - FormattedDiskPage fkp, int currentPropIndex) + public void setState(int currentPageIndex, FormattedDiskPage fkp, int currentPropIndex) { - _currentPage = currentPage; + _currentPageIndex = currentPageIndex; _fkp = fkp; _currentPropIndex = currentPropIndex;