org.nasdanika.html.model.bootstrap.Button Maven / Gradle / Ivy
/**
*/
package org.nasdanika.html.model.bootstrap;
import org.nasdanika.html.bootstrap.Color;
/**
*
* A representation of the model object 'Button'.
*
*
*
* TODO - size - enum? Block, active, disabled.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.bootstrap.Button#getColor Color}
* - {@link org.nasdanika.html.model.bootstrap.Button#isOutline Outline}
*
*
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getButton()
* @model
* @generated
*/
public interface Button extends Div {
/**
* Returns the value of the 'Color' attribute.
*
*
* @return the value of the 'Color' attribute.
* @see #setColor(Color)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getButton_Color()
* @model dataType="org.nasdanika.html.model.bootstrap.Color"
* @generated
*/
Color getColor();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Button#getColor Color}' attribute.
*
*
* @param value the new value of the 'Color' attribute.
* @see #getColor()
* @generated
*/
void setColor(Color value);
/**
* Returns the value of the 'Outline' attribute.
*
*
* @return the value of the 'Outline' attribute.
* @see #setOutline(boolean)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getButton_Outline()
* @model
* @generated
*/
boolean isOutline();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Button#isOutline Outline}' attribute.
*
*
* @param value the new value of the 'Outline' attribute.
* @see #isOutline()
* @generated
*/
void setOutline(boolean value);
} // Button