diff options
author | Nick Burch <nick@apache.org> | 2008-01-09 23:21:35 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2008-01-09 23:21:35 +0000 |
commit | 7ad30758812963137fe648cb07eacabcddbaec56 (patch) | |
tree | 4d367ef4706707c3d9f0791ea9d8776dc48c5e8b /src/java/org/apache/poi/ddf | |
parent | fbbd6523bad9a8d63050fbb87343e09c9c0127ed (diff) | |
download | poi-7ad30758812963137fe648cb07eacabcddbaec56.tar.gz poi-7ad30758812963137fe648cb07eacabcddbaec56.zip |
Make a start on processing shapes on a sheet out of a record. For now, doesn't actually manage to do this, but has much of the infrastructure that'll be needed. Includes ability to get an existing HSSFPatriarch for a sheet, if there are the required records, and for the HSSFPatriarch to be in a position to be given the shapes that make it up (but this isn't done yet)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@610608 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ddf')
-rw-r--r-- | src/java/org/apache/poi/ddf/EscherOptRecord.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/java/org/apache/poi/ddf/EscherOptRecord.java b/src/java/org/apache/poi/ddf/EscherOptRecord.java index f18e38f03c..d7de48edaf 100644 --- a/src/java/org/apache/poi/ddf/EscherOptRecord.java +++ b/src/java/org/apache/poi/ddf/EscherOptRecord.java @@ -18,11 +18,14 @@ package org.apache.poi.ddf; -import org.apache.poi.util.LittleEndian; -import org.apache.poi.util.HexDump; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.Iterator; +import java.util.List; -import java.util.*; -import java.io.IOException; +import org.apache.poi.util.HexDump; +import org.apache.poi.util.LittleEndian; /** * The opt record is used to store property values for a shape. It is the key to determining |