Interface TableRow
-
- All Superinterfaces:
org.nasdanika.common.Adaptable,BootstrapElement,EObject,HtmlElement,org.nasdanika.ncore.Marked,org.nasdanika.persistence.Marked,org.nasdanika.ncore.ModelElement,Notifier
- All Known Implementing Classes:
TableRowImpl
public interface TableRow extends BootstrapElement
A representation of the model object 'Table Row'. Table row.The following features are supported:
- See Also:
BootstrapPackage.getTableRow()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColorgetBackground()Returns the value of the 'Background' attribute.EList<TableCell>getCells()Returns the value of the 'Cells' containment reference list.ColorgetColor()Returns the value of the 'Color' attribute.voidsetBackground(Color value)Sets the value of the 'Background' attribute.voidsetColor(Color value)Sets the value of the 'Color' attribute.-
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
-
-
-
-
Method Detail
-
getCells
EList<TableCell> getCells()
Returns the value of the 'Cells' containment reference list. The list contents are of typeTableCell. Table row cells.- Returns:
- the value of the 'Cells' containment reference list.
- See Also:
BootstrapPackage.getTableRow_Cells()
-
getColor
Color getColor()
Returns the value of the 'Color' attribute. Row color.- Returns:
- the value of the 'Color' attribute.
- See Also:
setColor(Color),BootstrapPackage.getTableRow_Color()
-
setColor
void setColor(Color value)
Sets the value of the 'Color' attribute.- Parameters:
value- the new value of the 'Color' attribute.- See Also:
getColor()
-
getBackground
Color getBackground()
Returns the value of the 'Background' attribute. Row background color. Displays differently from "Color". Can also be specified via appearance.- Returns:
- the value of the 'Background' attribute.
- See Also:
setBackground(Color),BootstrapPackage.getTableRow_Background()
-
setBackground
void setBackground(Color value)
Sets the value of the 'Background' attribute.- Parameters:
value- the new value of the 'Background' attribute.- See Also:
getBackground()
-
-