001/**
002 */
003package org.nasdanika.html.model.bootstrap;
004
005import org.eclipse.emf.common.util.EList;
006
007/**
008 * <!-- begin-user-doc -->
009 * A representation of the model object '<em><b>Action Group</b></em>'.
010 * <!-- end-user-doc -->
011 *
012 * <!-- begin-model-doc -->
013 * [List group](https://getbootstrap.com/docs/4.0/components/list-group/) with actions (links). 
014 * <!-- end-model-doc -->
015 *
016 * <p>
017 * The following features are supported:
018 * </p>
019 * <ul>
020 *   <li>{@link org.nasdanika.html.model.bootstrap.ActionGroup#isFlush <em>Flush</em>}</li>
021 *   <li>{@link org.nasdanika.html.model.bootstrap.ActionGroup#getItems <em>Items</em>}</li>
022 * </ul>
023 *
024 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getActionGroup()
025 * @model annotation="http://www.eclipse.org/emf/2002/Ecore"
026 * @generated
027 */
028public interface ActionGroup extends Div {
029        /**
030         * Returns the value of the '<em><b>Flush</b></em>' attribute.
031         * <!-- begin-user-doc -->
032         * <!-- end-user-doc -->
033         * <!-- begin-model-doc -->
034         * Removes borders to render action group items edge-to-edge in a parent container.
035         * <!-- end-model-doc -->
036         * @return the value of the '<em>Flush</em>' attribute.
037         * @see #setFlush(boolean)
038         * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getActionGroup_Flush()
039         * @model
040         * @generated
041         */
042        boolean isFlush();
043
044        /**
045         * Sets the value of the '{@link org.nasdanika.html.model.bootstrap.ActionGroup#isFlush <em>Flush</em>}' attribute.
046         * <!-- begin-user-doc -->
047         * <!-- end-user-doc -->
048         * @param value the new value of the '<em>Flush</em>' attribute.
049         * @see #isFlush()
050         * @generated
051         */
052        void setFlush(boolean value);
053
054        /**
055         * Returns the value of the '<em><b>Items</b></em>' containment reference list.
056         * The list contents are of type {@link org.nasdanika.html.model.bootstrap.ActionGroupItem}.
057         * <!-- begin-user-doc -->
058         * <!-- end-user-doc -->
059         * <!-- begin-model-doc -->
060         * Group items.
061         * <!-- end-model-doc -->
062         * @return the value of the '<em>Items</em>' containment reference list.
063         * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getActionGroup_Items()
064         * @model containment="true"
065         * @generated
066         */
067        EList<ActionGroupItem> getItems();
068
069} // ActionGroup