org.nasdanika.html.model.bootstrap.ColumnWidth Maven / Gradle / Ivy
The newest version!
/**
*/
package org.nasdanika.html.model.bootstrap;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Column Width'.
*
*
*
* Column width for a given breakpoint.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.bootstrap.ColumnWidth#getBreakpoint Breakpoint}
* - {@link org.nasdanika.html.model.bootstrap.ColumnWidth#getWidth Width}
*
*
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getColumnWidth()
* @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='breakpoint width'"
* @generated
*/
public interface ColumnWidth extends EObject {
/**
* Returns the value of the 'Breakpoint' attribute.
*
*
*
* Breakpoint.
*
* @return the value of the 'Breakpoint' attribute.
* @see #setBreakpoint(String)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getColumnWidth_Breakpoint()
* @model
* @generated
*/
String getBreakpoint();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.ColumnWidth#getBreakpoint Breakpoint}' attribute.
*
*
* @param value the new value of the 'Breakpoint' attribute.
* @see #getBreakpoint()
* @generated
*/
void setBreakpoint(String value);
/**
* Returns the value of the 'Width' attribute.
*
*
*
* Column width.
*
* @return the value of the 'Width' attribute.
* @see #setWidth(String)
* @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getColumnWidth_Width()
* @model
* @generated
*/
String getWidth();
/**
* Sets the value of the '{@link org.nasdanika.html.model.bootstrap.ColumnWidth#getWidth Width}' attribute.
*
*
* @param value the new value of the 'Width' attribute.
* @see #getWidth()
* @generated
*/
void setWidth(String value);
} // ColumnWidth