|
ReportMill 11 API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.reportmill.base.RMObject
com.reportmill.shape.RMShape
com.reportmill.shape.RMTableGroup
public class RMTableGroup
This class manages a heirarchy of tables so that multiple tables can be configured to display in the same area of a given page. Each table will pick up exactly where the previous table ended.
Field Summary |
---|
Fields inherited from class com.reportmill.shape.RMShape |
---|
WRAP_TYPE_BOTH, WRAP_TYPE_NONE |
Constructor Summary | |
---|---|
RMTableGroup()
Creates a basic (empty) table group. |
Method Summary | |
---|---|
void |
addChildTable(RMTable aTable)
Adds the given table as a child to the main table. |
void |
addChildTable(RMTable aTable,
RMTable aParentTable)
Adds the given table as a child of the given parent table. |
void |
addChildTable(RMTable aTable,
RMTable aParentTable,
RMTable afterThisTable)
Adds the given table table as a child of the parent table (after the third given table). |
void |
addPeerTable(RMTable aTable)
Adds the given table to the main table's list of peers. |
void |
addPeerTable(RMTable aTable,
RMTable afterThisTable)
Adds the given table as a peer, and just after, the second given table. |
boolean |
childrenSuperSelectImmediately()
Edtior method - indicates that table group children (tables) super select immediately. |
RMTableGroup |
clone()
Standard clone implementation. |
RMTableGroup |
cloneDeep()
Clones all attributes of this shape with complete clones of its children as well. |
RMShape |
createPartClone()
Creates a new clone of this shape to hold multi-part children. |
void |
fromXML(com.reportmill.archiver.RXArchiver anArchiver,
com.reportmill.archiver.RXElement anElement,
RMTable aParentTable)
XML archival to recursively unarchive table group hierarchy. |
java.lang.Object |
fromXMLShape(com.reportmill.archiver.RXArchiver anArchiver,
com.reportmill.archiver.RXElement anElement,
java.lang.Object anOwner)
XML unarchival. |
void |
fromXMLShapeChildren(com.reportmill.archiver.RXArchiver anArchiver,
com.reportmill.archiver.RXElement anElement,
java.lang.Object anOwner)
XML unarchival - overridden to unarchive all child tables, recursively. |
RMTable |
getChildTable(int anIndex)
Returns the top level table at the given index for this table group. |
RMTable |
getChildTable(java.lang.Object aTable,
int anIndex)
Returns the specific child table of the given table at the given index. |
int |
getChildTableCount()
Returns the number of top level tables in this table group. |
int |
getChildTableCount(java.lang.Object aTable)
Returns the number of child tables for the given parent table. |
java.util.List |
getChildTables()
Returns the list of top level tables for this table group. |
java.util.List |
getChildTables(java.lang.Object aTable)
Returns the list of child tables for the given table. |
java.util.List |
getChildTables(java.lang.Object aTable,
boolean create)
Returns the list of child tables for the given table, creating the list if requested. |
java.lang.String |
getDatasetKey()
Returns the complete dataset key for the current main table (pre-pending dataset keys of parents). |
RMTable |
getMainTable()
Returns the currently selected table. |
RMTable |
getParentTable(RMTable aTable)
Returns the parent of the given table. |
RMTable |
getPeerTableNext(RMTable aTable)
Returns the next peer table of the given table. |
RMTable |
getPeerTablePrevious(RMTable aTable)
Returns the previous peer table of the given table. |
java.util.List |
getPeerTables(RMTable aTable)
Returns the list of peer tables for a given table. |
int |
indexOf(RMTable aTable)
Returns the index of the given table in its parent's child tables list. |
void |
makeTableChildOfTable(RMTable aTable,
java.lang.Object newParent)
This method moves a table to a new parent (used for Move In and Move Out menus). |
void |
moveTable(RMTable aTable,
int interval)
This method moves a given table up or down in its peer list (used for Move Up & Move Down menus). |
void |
paintShapeOver(com.reportmill.shape.RMShapePainter aPainter,
java.awt.Graphics2D g)
Paints table group button after child table has been drawn. |
void |
removeTable(RMTable aTable)
This method removes a table from the table group. |
void |
setMainTable(RMTable aTable)
Sets the currently selected table. |
void |
setReportMill(com.reportmill.base.ReportMill aReportMill)
Report generation method. |
void |
toXMLChildTables(com.reportmill.archiver.RXArchiver anArchiver,
com.reportmill.archiver.RXElement anElement,
RMTable aParentTable)
XML archival to recursively archive table group hierarchy. |
com.reportmill.archiver.RXElement |
toXMLShape(com.reportmill.archiver.RXArchiver anArchiver,
java.lang.Object anOwner)
XML archival. |
void |
toXMLShapeChildren(com.reportmill.archiver.RXArchiver anArchiver,
com.reportmill.archiver.RXElement anElement,
java.lang.Object anOwner)
XML archival - override to archive all child tables (not just visible one), recursively. |
Methods inherited from class com.reportmill.base.RMObject |
---|
addListener, addPropertyChangeListener, firePropertyChange, getListener, getListenerCount, getListeners, isFirePropertyChangeEnabled, isUndoing, removeListener, removePropertyChangeListener, setFirePropertyChangeEnabled, setUndoing |
Methods inherited from class java.lang.Object |
---|
getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public RMTableGroup()
Method Detail |
---|
public RMTable getMainTable()
public void setMainTable(RMTable aTable)
public RMTable getParentTable(RMTable aTable)
public int indexOf(RMTable aTable)
public java.util.List getPeerTables(RMTable aTable)
public RMTable getPeerTablePrevious(RMTable aTable)
public RMTable getPeerTableNext(RMTable aTable)
public int getChildTableCount()
public RMTable getChildTable(int anIndex)
public java.util.List getChildTables()
public int getChildTableCount(java.lang.Object aTable)
public RMTable getChildTable(java.lang.Object aTable, int anIndex)
public java.util.List getChildTables(java.lang.Object aTable)
public java.util.List getChildTables(java.lang.Object aTable, boolean create)
public java.lang.String getDatasetKey()
getDatasetKey
in class RMShape
public void addPeerTable(RMTable aTable)
public void addPeerTable(RMTable aTable, RMTable afterThisTable)
public void addChildTable(RMTable aTable)
public void addChildTable(RMTable aTable, RMTable aParentTable)
public void addChildTable(RMTable aTable, RMTable aParentTable, RMTable afterThisTable)
public void moveTable(RMTable aTable, int interval)
public void makeTableChildOfTable(RMTable aTable, java.lang.Object newParent)
public void removeTable(RMTable aTable)
public void paintShapeOver(com.reportmill.shape.RMShapePainter aPainter, java.awt.Graphics2D g)
paintShapeOver
in class RMShape
public void setReportMill(com.reportmill.base.ReportMill aReportMill)
setReportMill
in class RMShape
public RMShape createPartClone()
createPartClone
in class RMShape
public RMTableGroup clone()
clone
in class RMShape
public RMTableGroup cloneDeep()
cloneDeep
in class RMShape
public com.reportmill.archiver.RXElement toXMLShape(com.reportmill.archiver.RXArchiver anArchiver, java.lang.Object anOwner)
toXMLShape
in class RMShape
public void toXMLShapeChildren(com.reportmill.archiver.RXArchiver anArchiver, com.reportmill.archiver.RXElement anElement, java.lang.Object anOwner)
toXMLShapeChildren
in class RMShape
public void toXMLChildTables(com.reportmill.archiver.RXArchiver anArchiver, com.reportmill.archiver.RXElement anElement, RMTable aParentTable)
public java.lang.Object fromXMLShape(com.reportmill.archiver.RXArchiver anArchiver, com.reportmill.archiver.RXElement anElement, java.lang.Object anOwner)
fromXMLShape
in class RMShape
public void fromXMLShapeChildren(com.reportmill.archiver.RXArchiver anArchiver, com.reportmill.archiver.RXElement anElement, java.lang.Object anOwner)
fromXMLShapeChildren
in class RMShape
public void fromXML(com.reportmill.archiver.RXArchiver anArchiver, com.reportmill.archiver.RXElement anElement, RMTable aParentTable)
public boolean childrenSuperSelectImmediately()
childrenSuperSelectImmediately
in class RMShape
|
ReportMill 11 API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |