org.nasdanika.html.model.bootstrap.Float Maven / Gradle / Ivy
/**
*/
package org.nasdanika.html.model.bootstrap;
import org.eclipse.emf.ecore.EObject;
import org.nasdanika.html.bootstrap.Breakpoint;
/**
*
* A representation of the model object 'Float'.
*
*
*
* Defines element floating - left or right - for a given breakpoint.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.bootstrap.Float#getSide Side}
* - {@link org.nasdanika.html.model.bootstrap.Float#getBreakpoint Breakpoint}
*
*
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getFloat()
* @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='attributes'"
* @generated
*/
public interface Float extends EObject {
/**
* Returns the value of the 'Side' attribute.
*
*
*
* Side to float to. ``left``, ``right``, or ``none``.
*
* @return the value of the 'Side' attribute.
* @see #setSide(String)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getFloat_Side()
* @model required="true"
* annotation="urn:org.nasdanika default-feature='true'"
* @generated
*/
String getSide();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Float#getSide Side}' attribute.
*
*
* @param value the new value of the 'Side' attribute.
* @see #getSide()
* @generated
*/
void setSide(String value);
/**
* Returns the value of the 'Breakpoint' attribute.
*
*
*
* Breakpoint.
*
* @return the value of the 'Breakpoint' attribute.
* @see #setBreakpoint(Breakpoint)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getFloat_Breakpoint()
* @model dataType="org.nasdanika.html.model.bootstrap.Breakpoint"
* @generated
*/
Breakpoint getBreakpoint();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.Float#getBreakpoint Breakpoint}' attribute.
*
*
* @param value the new value of the 'Breakpoint' attribute.
* @see #getBreakpoint()
* @generated
*/
void setBreakpoint(Breakpoint value);
} // Float