Package com.sodius.mdw.metamodel.excel
Interface ExcelFactory
-
- All Superinterfaces:
org.eclipse.emf.ecore.EFactory
,org.eclipse.emf.ecore.EModelElement
,org.eclipse.emf.ecore.EObject
,org.eclipse.emf.common.notify.Notifier
public interface ExcelFactory extends org.eclipse.emf.ecore.EFactory
The Factory for the model. It provides a create method for each non-abstract class of the model.- See Also:
ExcelPackage
-
-
Field Summary
Fields Modifier and Type Field Description static ExcelFactory
eINSTANCE
The singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Cell
createCell()
Returns a new object of class 'Cell'.CellRegion
createCellRegion()
Returns a new object of class 'Cell Region'.CellStyle
createCellStyle()
Returns a new object of class 'Cell Style'.Color
createColor()
Returns a new object of class 'Color'.Column
createColumn()
Returns a new object of class 'Column'.Comment
createComment()
Returns a new object of class 'Comment'.Font
createFont()
Returns a new object of class 'Font'.Hyperlink
createHyperlink()
Returns a new object of class 'Hyperlink'.Row
createRow()
Returns a new object of class 'Row'.Sheet
createSheet()
Returns a new object of class 'Sheet'.Workbook
createWorkbook()
Returns a new object of class 'Workbook'.ExcelPackage
getExcelPackage()
Returns the package supported by this factory.-
Methods inherited from interface org.eclipse.emf.ecore.EFactory
convertToString, create, createFromString, getEPackage, setEPackage
-
Methods inherited from interface org.eclipse.emf.ecore.EModelElement
getEAnnotation, getEAnnotations
-
-
-
-
Field Detail
-
eINSTANCE
static final ExcelFactory eINSTANCE
The singleton instance of the factory.
-
-
Method Detail
-
createCell
Cell createCell()
Returns a new object of class 'Cell'.- Returns:
- a new object of class 'Cell'.
-
createSheet
Sheet createSheet()
Returns a new object of class 'Sheet'.- Returns:
- a new object of class 'Sheet'.
-
createRow
Row createRow()
Returns a new object of class 'Row'.- Returns:
- a new object of class 'Row'.
-
createComment
Comment createComment()
Returns a new object of class 'Comment'.- Returns:
- a new object of class 'Comment'.
-
createCellStyle
CellStyle createCellStyle()
Returns a new object of class 'Cell Style'.- Returns:
- a new object of class 'Cell Style'.
-
createCellRegion
CellRegion createCellRegion()
Returns a new object of class 'Cell Region'.- Returns:
- a new object of class 'Cell Region'.
-
createWorkbook
Workbook createWorkbook()
Returns a new object of class 'Workbook'.- Returns:
- a new object of class 'Workbook'.
-
createFont
Font createFont()
Returns a new object of class 'Font'.- Returns:
- a new object of class 'Font'.
-
createColumn
Column createColumn()
Returns a new object of class 'Column'.- Returns:
- a new object of class 'Column'.
-
createColor
Color createColor()
Returns a new object of class 'Color'.- Returns:
- a new object of class 'Color'.
-
createHyperlink
Hyperlink createHyperlink()
Returns a new object of class 'Hyperlink'.- Returns:
- a new object of class 'Hyperlink'.
-
getExcelPackage
ExcelPackage getExcelPackage()
Returns the package supported by this factory.- Returns:
- the package supported by this factory.
-
-