org.nasdanika.html.model.bootstrap.BootstrapElement Maven / Gradle / Ivy
/**
*/
package org.nasdanika.html.model.bootstrap;
import org.nasdanika.html.model.html.HtmlElement;
/**
*
* A representation of the model object 'Element'.
*
*
*
* An HTML element with Bootstrap appearance.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.bootstrap.BootstrapElement#getAppearance Appearance}
*
*
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getBootstrapElement()
* @model
* @generated
*/
public interface BootstrapElement extends HtmlElement {
/**
* Returns the value of the 'Appearance' containment reference.
*
*
*
* Customizes appearance of Bootstrap element.
*
* @return the value of the 'Appearance' containment reference.
* @see #setAppearance(Appearance)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getBootstrapElement_Appearance()
* @model containment="true"
* annotation="urn:org.nasdanika homogeneous='true' strict-containment='true'"
* @generated
*/
Appearance getAppearance();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.BootstrapElement#getAppearance Appearance}' containment reference.
*
*
* @param value the new value of the 'Appearance' containment reference.
* @see #getAppearance()
* @generated
*/
void setAppearance(Appearance value);
} // BootstrapElement