001/** 002 */ 003package org.nasdanika.html.model.bootstrap; 004 005import org.nasdanika.html.bootstrap.Color; 006 007 008/** 009 * <!-- begin-user-doc --> 010 * A representation of the model object '<em><b>Alert</b></em>'. 011 * <!-- end-user-doc --> 012 * 013 * <p> 014 * The following features are supported: 015 * </p> 016 * <ul> 017 * <li>{@link org.nasdanika.html.model.bootstrap.Alert#getColor <em>Color</em>}</li> 018 * </ul> 019 * 020 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getAlert() 021 * @model 022 * @generated 023 */ 024public interface Alert extends Div { 025 /** 026 * Returns the value of the '<em><b>Color</b></em>' attribute. 027 * <!-- begin-user-doc --> 028 * <!-- end-user-doc --> 029 * @return the value of the '<em>Color</em>' attribute. 030 * @see #setColor(Color) 031 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getAlert_Color() 032 * @model dataType="org.nasdanika.html.model.bootstrap.Color" 033 * @generated 034 */ 035 Color getColor(); 036 037 /** 038 * Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Alert#getColor <em>Color</em>}' attribute. 039 * <!-- begin-user-doc --> 040 * <!-- end-user-doc --> 041 * @param value the new value of the '<em>Color</em>' attribute. 042 * @see #getColor() 043 * @generated 044 */ 045 void setColor(Color value); 046 047} // Alert