Package com.sodius.mdw.metamodel.excel
Interface Column
-
- All Superinterfaces:
Comparable<Object>
,org.eclipse.emf.ecore.EModelElement
,org.eclipse.emf.ecore.EObject
,MDWEObject
,MDWObject
,org.eclipse.emf.common.notify.Notifier
public interface Column extends MDWEObject, org.eclipse.emf.ecore.EModelElement
A representation of the model object 'Column'.The following features are supported:
- See Also:
ExcelPackage.getColumn()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MDWEList<Cell>
getCells()
Returns the value of the 'Cells' reference list.int
getColumnIndex()
Returns the value of the 'Column Index' attribute.CellStyle
getDefaultStyle()
Returns the value of the 'Default Style' reference.Sheet
getSheet()
Returns the value of the 'Sheet' container reference.float
getWidth()
Returns the value of the 'Width' attribute.void
setDefaultStyle(CellStyle value)
Sets the value of the 'Default Style
' reference.void
setSheet(Sheet value)
Sets the value of the 'Sheet
' container reference.void
setWidth(float value)
Sets the value of the 'Width
' attribute.-
Methods inherited from interface org.eclipse.emf.ecore.EModelElement
getEAnnotation, getEAnnotations
-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface com.sodius.mdw.core.model.MDWObject
compareTo, eExtendedClass, eIsInstanceOf, eIsInstanceOf, eIsProfiled, eIsRemoved, eMetamodel, eMetaTypeName, eModel, eRemove, eSetUniqueID, eUniqueID, superScript, superScript, toBoolean, toBoolean, toByte, toByte, toChar, toChar, toDouble, toDouble, toFloat, toFloat, toInt, toInt, toList, toList, toList, toList, toList, toLong, toLong, toObject, toObject, toSet, toSet, toShort, toShort, toString, toString
-
-
-
-
Method Detail
-
getColumnIndex
int getColumnIndex()
Returns the value of the 'Column Index' attribute. The default value is"-1"
.- Returns:
- the value of the 'Column Index' attribute.
- See Also:
ExcelPackage.getColumn_ColumnIndex()
-
getWidth
float getWidth()
Returns the value of the 'Width' attribute.- Returns:
- the value of the 'Width' attribute.
- See Also:
setWidth(float)
,ExcelPackage.getColumn_Width()
-
setWidth
void setWidth(float value)
Sets the value of the 'Width
' attribute.- Parameters:
value
- the new value of the 'Width' attribute.- See Also:
getWidth()
-
getDefaultStyle
CellStyle getDefaultStyle()
Returns the value of the 'Default Style' reference.- Returns:
- the value of the 'Default Style' reference.
- See Also:
setDefaultStyle(CellStyle)
,ExcelPackage.getColumn_DefaultStyle()
-
setDefaultStyle
void setDefaultStyle(CellStyle value)
Sets the value of the 'Default Style
' reference.- Parameters:
value
- the new value of the 'Default Style' reference.- See Also:
getDefaultStyle()
-
getCells
MDWEList<Cell> getCells()
Returns the value of the 'Cells' reference list. The list contents are of typeCell
. It is bidirectional and its opposite is 'Column
'.- Returns:
- the value of the 'Cells' reference list.
- See Also:
ExcelPackage.getColumn_Cells()
,Cell.getColumn()
-
getSheet
Sheet getSheet()
Returns the value of the 'Sheet' container reference. It is bidirectional and its opposite is 'Columns
'.- Returns:
- the value of the 'Sheet' container reference.
- See Also:
setSheet(Sheet)
,ExcelPackage.getColumn_Sheet()
,Sheet.getColumns()
-
setSheet
void setSheet(Sheet value)
Sets the value of the 'Sheet
' container reference.- Parameters:
value
- the new value of the 'Sheet' container reference.- See Also:
getSheet()
-
-