org.nasdanika.html.model.bootstrap.TableRow Maven / Gradle / Ivy
The newest version!
/**
*/
package org.nasdanika.html.model.bootstrap;
import org.eclipse.emf.common.util.EList;
import org.nasdanika.html.bootstrap.Color;
/**
*
* A representation of the model object 'Table Row'.
*
*
*
* Table row.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.bootstrap.TableRow#getCells Cells}
* - {@link org.nasdanika.html.model.bootstrap.TableRow#getColor Color}
* - {@link org.nasdanika.html.model.bootstrap.TableRow#getBackground Background}
*
*
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTableRow()
* @model
* @generated
*/
public interface TableRow extends BootstrapElement {
/**
* Returns the value of the 'Cells' containment reference list.
* The list contents are of type {@link org.nasdanika.html.model.bootstrap.TableCell}.
*
*
*
* Table row cells.
*
* @return the value of the 'Cells' containment reference list.
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTableRow_Cells()
* @model containment="true"
* annotation="urn:org.nasdanika homogeneous='true'"
* @generated
*/
EList getCells();
/**
* Returns the value of the 'Color' attribute.
*
*
*
* Row color.
*
* @return the value of the 'Color' attribute.
* @see #setColor(Color)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTableRow_Color()
* @model dataType="org.nasdanika.html.model.bootstrap.Color"
* @generated
*/
Color getColor();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.TableRow#getColor Color}' attribute.
*
*
* @param value the new value of the 'Color' attribute.
* @see #getColor()
* @generated
*/
void setColor(Color value);
/**
* Returns the value of the 'Background' attribute.
*
*
*
* Row background color. Displays differently from "Color". Can also be specified via appearance.
*
* @return the value of the 'Background' attribute.
* @see #setBackground(Color)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTableRow_Background()
* @model dataType="org.nasdanika.html.model.bootstrap.Color"
* @generated
*/
Color getBackground();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.TableRow#getBackground Background}' attribute.
*
*
* @param value the new value of the 'Background' attribute.
* @see #getBackground()
* @generated
*/
void setBackground(Color value);
} // TableRow