org.nasdanika.html.model.bootstrap.Table Maven / Gradle / Ivy
The newest version!
/**
*/
package org.nasdanika.html.model.bootstrap;
/**
*
* A representation of the model object 'Table'.
*
*
*
* [Bootstrap table](https://getbootstrap.com/docs/4.0/content/tables/)
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.bootstrap.Table#getHeader Header}
* - {@link org.nasdanika.html.model.bootstrap.Table#getBody Body}
* - {@link org.nasdanika.html.model.bootstrap.Table#getFooter Footer}
*
*
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTable()
* @model
* @generated
*/
public interface Table extends TableRowContainer, TableConfiguration {
/**
* Returns the value of the 'Header' containment reference.
*
*
*
* Table header.
*
* @return the value of the 'Header' containment reference.
* @see #setHeader(TableHeader)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTable_Header()
* @model containment="true"
* annotation="urn:org.nasdanika homogeneous='true'"
* @generated
*/
TableHeader getHeader();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Table#getHeader Header}' containment reference.
*
*
* @param value the new value of the 'Header' containment reference.
* @see #getHeader()
* @generated
*/
void setHeader(TableHeader value);
/**
* Returns the value of the 'Body' containment reference.
*
*
*
* Table body.
*
* @return the value of the 'Body' containment reference.
* @see #setBody(TableSection)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTable_Body()
* @model containment="true"
* annotation="urn:org.nasdanika homogeneous='true'"
* @generated
*/
TableSection getBody();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Table#getBody Body}' containment reference.
*
*
* @param value the new value of the 'Body' containment reference.
* @see #getBody()
* @generated
*/
void setBody(TableSection value);
/**
* Returns the value of the 'Footer' containment reference.
*
*
*
* Table footer.
*
* @return the value of the 'Footer' containment reference.
* @see #setFooter(TableSection)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTable_Footer()
* @model containment="true"
* annotation="urn:org.nasdanika homogeneous='true'"
* @generated
*/
TableSection getFooter();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Table#getFooter Footer}' containment reference.
*
*
* @param value the new value of the 'Footer' containment reference.
* @see #getFooter()
* @generated
*/
void setFooter(TableSection value);
} // Table