TagLoopEventpublic class TagEvent
extends java.lang.Object
TagEvent represents data associated with a "tag processed"
event. It contains a reference to the Block of
Cells that was processed and the Map of bean names
to values used to process it.| Constructor | Description |
|---|---|
TagEvent(org.apache.poi.ss.usermodel.Sheet sheet,
Block block,
java.util.Map<java.lang.String,java.lang.Object> beans) |
Constructs a
TagEvent built using the given
TagContext. |
| Modifier and Type | Method | Description |
|---|---|---|
java.util.Map<java.lang.String,java.lang.Object> |
getBeans() |
Returns the
Map of bean names to values used to process the
block of cells. |
Block |
getBlock() |
Returns the
Block of cells that was processed. |
org.apache.poi.ss.usermodel.Sheet |
getSheet() |
Returns the
Sheet on which the block of cells was processed. |
public TagEvent(org.apache.poi.ss.usermodel.Sheet sheet,
Block block,
java.util.Map<java.lang.String,java.lang.Object> beans)
TagEvent built using the given
TagContext.sheet - A Sheet.block - A Block.beans - A Map of bean names to values.public org.apache.poi.ss.usermodel.Sheet getSheet()
Sheet on which the block of cells was processed.Sheet on which the block of cells was processed.public Block getBlock()
Block of cells that was processed.Block of cells that was processed.public java.util.Map<java.lang.String,java.lang.Object> getBeans()
Map of bean names to values used to process the
block of cells.Map of bean names to values.Copyright © 2012–2018 Jett Team. All rights reserved.