001/** 002 */ 003package org.nasdanika.html.model.bootstrap; 004 005import org.eclipse.emf.common.util.EList; 006 007/** 008 * <!-- begin-user-doc --> 009 * A representation of the model object '<em><b>Column</b></em>'. 010 * <!-- end-user-doc --> 011 * 012 * <!-- begin-model-doc --> 013 * Container row column. 014 * <!-- end-model-doc --> 015 * 016 * <p> 017 * The following features are supported: 018 * </p> 019 * <ul> 020 * <li>{@link org.nasdanika.html.model.bootstrap.Column#getWidth <em>Width</em>}</li> 021 * </ul> 022 * 023 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getColumn() 024 * @model 025 * @generated 026 */ 027public interface Column extends BootstrapElement { 028 /** 029 * Returns the value of the '<em><b>Width</b></em>' containment reference list. 030 * The list contents are of type {@link org.nasdanika.html.model.bootstrap.ColumnWidth}. 031 * <!-- begin-user-doc --> 032 * <!-- end-user-doc --> 033 * <!-- begin-model-doc --> 034 * Column widths for different breakpoints. 035 * <!-- end-model-doc --> 036 * @return the value of the '<em>Width</em>' containment reference list. 037 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getColumn_Width() 038 * @model containment="true" 039 * @generated 040 */ 041 EList<ColumnWidth> getWidth(); 042 043} // Column