|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectnet.sf.jett.tag.TagContext
public class TagContext
A TagContext object represents the context associated with a
Tag.
| Constructor Summary | |
|---|---|
TagContext()
Construct a TagContext, initializing things to null. |
|
| Method Summary | |
|---|---|
org.apache.poi.ss.usermodel.Drawing |
createDrawing()
Returns the Sheet's Drawing object, creating it
if it doesn't exist. |
java.util.Map<java.lang.String,java.lang.Object> |
getBeans()
Returns the Map of beans. |
Block |
getBlock()
Returns the Block that applies to a tag. |
org.apache.poi.ss.usermodel.Drawing |
getDrawing()
Returns the Sheet's Drawing object, if it
exists yet. |
java.util.Map<java.lang.String,org.apache.poi.ss.usermodel.Cell> |
getProcessedCellsMap()
Returns the Map of Cells that have already been
processed. |
org.apache.poi.ss.usermodel.Sheet |
getSheet()
Returns the Sheet on which a tag is found. |
void |
setBeans(java.util.Map<java.lang.String,java.lang.Object> beans)
Sets the Map of beans. |
void |
setBlock(Block block)
Sets the Block that applies to a tag. |
void |
setDrawing(org.apache.poi.ss.usermodel.Drawing drawing)
Sets the Sheet's Drawing object. |
void |
setProcessedCellsMap(java.util.Map<java.lang.String,org.apache.poi.ss.usermodel.Cell> processedCells)
Sets the Map of Cells that have already been
processed. |
void |
setSheet(org.apache.poi.ss.usermodel.Sheet sheet)
Sets the Sheet on which a tag is found. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public TagContext()
TagContext, initializing things to null.
| Method Detail |
|---|
public org.apache.poi.ss.usermodel.Sheet getSheet()
Sheet on which a tag is found.
Sheet.public void setSheet(org.apache.poi.ss.usermodel.Sheet sheet)
Sheet on which a tag is found.
sheet - A Sheet.public Block getBlock()
Block that applies to a tag.
Block.public void setBlock(Block block)
Block that applies to a tag.
block - A Block.public java.util.Map<java.lang.String,java.lang.Object> getBeans()
Map of beans.
Map of bean names and objects.public void setBeans(java.util.Map<java.lang.String,java.lang.Object> beans)
Map of beans.
beans - A Map of bean names and objects.public java.util.Map<java.lang.String,org.apache.poi.ss.usermodel.Cell> getProcessedCellsMap()
Map of Cells that have already been
processed.
Map of Cells.public void setProcessedCellsMap(java.util.Map<java.lang.String,org.apache.poi.ss.usermodel.Cell> processedCells)
Map of Cells that have already been
processed.
processedCells - A Map of Cells.public org.apache.poi.ss.usermodel.Drawing createDrawing()
Sheet's Drawing object, creating it
if it doesn't exist. It is hoped that this would be replaced by a call
to getDrawingPatriarch in the POI "ss" package, and that
that call would NOT corrupt drawings, charts, etc.
Drawing.public org.apache.poi.ss.usermodel.Drawing getDrawing()
Sheet's Drawing object, if it
exists yet.
Drawing, or null if it doesn't exist
yet.public void setDrawing(org.apache.poi.ss.usermodel.Drawing drawing)
Sheet's Drawing object. This is
usually used to initialize a TagContext from another
TagContext, copying the Drawing object.
drawing - A Drawing.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||