Package it.smartio.docs
Interface Table
-
- All Known Implementing Classes:
TableBuilder
public interface Table extends Node
TheTableclass.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceTable.Areastatic classTable.AreaTypestatic interfaceTable.Cellstatic interfaceTable.Columnstatic interfaceTable.Row
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <R> voidaccept(NodeVisitor<R> visitor, R data)java.util.List<Table.Area>getAreas()java.lang.StringgetBackgroundColor()java.lang.StringgetBorderColor()java.util.List<Table.Column>getColumns()booleanisVirtual()
-
-
-
Method Detail
-
isVirtual
boolean isVirtual()
-
getBorderColor
java.lang.String getBorderColor()
-
getBackgroundColor
java.lang.String getBackgroundColor()
-
getColumns
java.util.List<Table.Column> getColumns()
-
getAreas
java.util.List<Table.Area> getAreas()
-
accept
default <R> void accept(NodeVisitor<R> visitor, R data)
-
-