Interface Table
-
- All Superinterfaces:
org.nasdanika.common.Adaptable,BootstrapElement,EObject,HtmlElement,org.nasdanika.ncore.Marked,org.nasdanika.persistence.Marked,org.nasdanika.ncore.ModelElement,Notifier,TableConfiguration,TableRowContainer
- All Known Implementing Classes:
TableImpl
public interface Table extends TableRowContainer, TableConfiguration
A representation of the model object 'Table'. [Bootstrap table](https://getbootstrap.com/docs/4.0/content/tables/)The following features are supported:
- See Also:
BootstrapPackage.getTable()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableSectiongetBody()Returns the value of the 'Body' containment reference.TableSectiongetFooter()Returns the value of the 'Footer' containment reference.TableHeadergetHeader()Returns the value of the 'Header' containment reference.voidsetBody(TableSection value)Sets the value of the 'Body' containment reference.voidsetFooter(TableSection value)Sets the value of the 'Footer' containment reference.voidsetHeader(TableHeader value)Sets the value of the 'Header' containment reference.-
Methods inherited from interface org.nasdanika.html.model.bootstrap.BootstrapElement
getAppearance, setAppearance
-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface org.nasdanika.html.model.html.HtmlElement
getAttributes, getContent
-
Methods inherited from interface org.nasdanika.ncore.ModelElement
getActionPrototype, getDescription, getRepresentations, getUris, getUuid, setActionPrototype, setDescription, setUuid
-
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
-
Methods inherited from interface org.nasdanika.html.model.bootstrap.TableConfiguration
isBordered, isBorderless, isDark, isHover, isSmall, isStriped, setBordered, setBorderless, setDark, setHover, setSmall, setStriped
-
Methods inherited from interface org.nasdanika.html.model.bootstrap.TableRowContainer
getRows
-
-
-
-
Method Detail
-
getHeader
TableHeader getHeader()
Returns the value of the 'Header' containment reference. Table header.- Returns:
- the value of the 'Header' containment reference.
- See Also:
setHeader(TableHeader),BootstrapPackage.getTable_Header()
-
setHeader
void setHeader(TableHeader value)
Sets the value of the 'Header' containment reference.- Parameters:
value- the new value of the 'Header' containment reference.- See Also:
getHeader()
-
getBody
TableSection getBody()
Returns the value of the 'Body' containment reference. Table body.- Returns:
- the value of the 'Body' containment reference.
- See Also:
setBody(TableSection),BootstrapPackage.getTable_Body()
-
setBody
void setBody(TableSection value)
Sets the value of the 'Body' containment reference.- Parameters:
value- the new value of the 'Body' containment reference.- See Also:
getBody()
-
getFooter
TableSection getFooter()
Returns the value of the 'Footer' containment reference. Table footer.- Returns:
- the value of the 'Footer' containment reference.
- See Also:
setFooter(TableSection),BootstrapPackage.getTable_Footer()
-
setFooter
void setFooter(TableSection value)
Sets the value of the 'Footer' containment reference.- Parameters:
value- the new value of the 'Footer' containment reference.- See Also:
getFooter()
-
-