org.nasdanika.html.model.bootstrap.Modal Maven / Gradle / Ivy
/**
*/
package org.nasdanika.html.model.bootstrap;
/**
*
* A representation of the model object 'Modal'.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.bootstrap.Modal#getHeader Header}
* - {@link org.nasdanika.html.model.bootstrap.Modal#getBody Body}
* - {@link org.nasdanika.html.model.bootstrap.Modal#getFooter Footer}
* - {@link org.nasdanika.html.model.bootstrap.Modal#isDismisser Dismisser}
* - {@link org.nasdanika.html.model.bootstrap.Modal#isScrollable Scrollable}
* - {@link org.nasdanika.html.model.bootstrap.Modal#isCentered Centered}
* - {@link org.nasdanika.html.model.bootstrap.Modal#getSize Size}
*
*
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getModal()
* @model
* @generated
*/
public interface Modal extends BootstrapElement {
/**
* Returns the value of the 'Header' containment reference.
*
*
*
* Modal header content and appearance.
*
* @return the value of the 'Header' containment reference.
* @see #setHeader(BootstrapElement)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getModal_Header()
* @model containment="true"
* annotation="urn:org.nasdanika homogeneous='true'"
* @generated
*/
BootstrapElement getHeader();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Modal#getHeader Header}' containment reference.
*
*
* @param value the new value of the 'Header' containment reference.
* @see #getHeader()
* @generated
*/
void setHeader(BootstrapElement value);
/**
* Returns the value of the 'Body' containment reference.
*
*
*
* Modal body content and appearance.
*
* @return the value of the 'Body' containment reference.
* @see #setBody(BootstrapElement)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getModal_Body()
* @model containment="true"
* annotation="urn:org.nasdanika homogeneous='true'"
* @generated
*/
BootstrapElement getBody();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Modal#getBody Body}' containment reference.
*
*
* @param value the new value of the 'Body' containment reference.
* @see #getBody()
* @generated
*/
void setBody(BootstrapElement value);
/**
* Returns the value of the 'Footer' containment reference.
*
*
*
* Modal footer content and appearance.
*
* @return the value of the 'Footer' containment reference.
* @see #setFooter(BootstrapElement)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getModal_Footer()
* @model containment="true"
* annotation="urn:org.nasdanika homogeneous='true'"
* @generated
*/
BootstrapElement getFooter();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Modal#getFooter Footer}' containment reference.
*
*
* @param value the new value of the 'Footer' containment reference.
* @see #getFooter()
* @generated
*/
void setFooter(BootstrapElement value);
/**
* Returns the value of the 'Dismisser' attribute.
* The default value is "true"
.
*
*
* @return the value of the 'Dismisser' attribute.
* @see #setDismisser(boolean)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getModal_Dismisser()
* @model default="true"
* @generated
*/
boolean isDismisser();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Modal#isDismisser Dismisser}' attribute.
*
*
* @param value the new value of the 'Dismisser' attribute.
* @see #isDismisser()
* @generated
*/
void setDismisser(boolean value);
/**
* Returns the value of the 'Scrollable' attribute.
*
*
* @return the value of the 'Scrollable' attribute.
* @see #setScrollable(boolean)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getModal_Scrollable()
* @model
* @generated
*/
boolean isScrollable();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Modal#isScrollable Scrollable}' attribute.
*
*
* @param value the new value of the 'Scrollable' attribute.
* @see #isScrollable()
* @generated
*/
void setScrollable(boolean value);
/**
* Returns the value of the 'Centered' attribute.
*
*
* @return the value of the 'Centered' attribute.
* @see #setCentered(boolean)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getModal_Centered()
* @model
* @generated
*/
boolean isCentered();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Modal#isCentered Centered}' attribute.
*
*
* @param value the new value of the 'Centered' attribute.
* @see #isCentered()
* @generated
*/
void setCentered(boolean value);
/**
* Returns the value of the 'Size' attribute.
* The default value is ""
.
*
*
*
* Modal size - ``small``, ``large``, or ``extra-large``.
*
* @return the value of the 'Size' attribute.
* @see #setSize(String)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getModal_Size()
* @model default=""
* @generated
*/
String getSize();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Modal#getSize Size}' attribute.
*
*
* @param value the new value of the 'Size' attribute.
* @see #getSize()
* @generated
*/
void setSize(String value);
} // Modal