org.nasdanika.html.model.bootstrap.ActionGroup Maven / Gradle / Ivy
/**
*/
package org.nasdanika.html.model.bootstrap;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Action Group'.
*
*
*
* [List group](https://getbootstrap.com/docs/4.0/components/list-group/) with actions (links).
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.bootstrap.ActionGroup#isFlush Flush}
* - {@link org.nasdanika.html.model.bootstrap.ActionGroup#getItems Items}
*
*
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getActionGroup()
* @model annotation="http://www.eclipse.org/emf/2002/Ecore"
* @generated
*/
public interface ActionGroup extends Div {
/**
* Returns the value of the 'Flush' attribute.
*
*
*
* Removes borders to render action group items edge-to-edge in a parent container.
*
* @return the value of the 'Flush' attribute.
* @see #setFlush(boolean)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getActionGroup_Flush()
* @model
* @generated
*/
boolean isFlush();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.ActionGroup#isFlush Flush}' attribute.
*
*
* @param value the new value of the 'Flush' attribute.
* @see #isFlush()
* @generated
*/
void setFlush(boolean value);
/**
* Returns the value of the 'Items' containment reference list.
* The list contents are of type {@link org.nasdanika.html.model.bootstrap.ActionGroupItem}.
*
*
*
* Group items.
*
* @return the value of the 'Items' containment reference list.
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getActionGroup_Items()
* @model containment="true"
* @generated
*/
EList getItems();
} // ActionGroup