diff options
author | Nick Burch <nick@apache.org> | 2008-01-15 16:31:29 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2008-01-15 16:31:29 +0000 |
commit | b38caa4cee44ad5c4e26a441ac18a121057e7300 (patch) | |
tree | 5c8281f7feff06d423bc8d91c1d2e01a8570278c /src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java | |
parent | 8accff6c6c95814888cfa7299b3e8e300a43bcc0 (diff) | |
download | poi-b38caa4cee44ad5c4e26a441ac18a121057e7300.tar.gz poi-b38caa4cee44ad5c4e26a441ac18a121057e7300.zip |
Some more updates to the records->usermodel support for hssf shapes. Still not enough there to be useful to pretty much anyone, but at least there's now a framework in place that people can use if they want to support more, and some tests
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@612148 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java')
-rw-r--r-- | src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java b/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java index 3df804da76..583e1b4793 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java @@ -254,4 +254,10 @@ public class HSSFPatriarch return y2; } + /** + * Returns the aggregate escher record we're bound to + */ + protected EscherAggregate _getBoundAggregate() { + return boundAggregate; + } } |