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.EFactoryThe 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 ExcelFactoryeINSTANCEThe singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CellcreateCell()Returns a new object of class 'Cell'.CellRegioncreateCellRegion()Returns a new object of class 'Cell Region'.CellStylecreateCellStyle()Returns a new object of class 'Cell Style'.ColorcreateColor()Returns a new object of class 'Color'.ColumncreateColumn()Returns a new object of class 'Column'.CommentcreateComment()Returns a new object of class 'Comment'.FontcreateFont()Returns a new object of class 'Font'.HyperlinkcreateHyperlink()Returns a new object of class 'Hyperlink'.RowcreateRow()Returns a new object of class 'Row'.SheetcreateSheet()Returns a new object of class 'Sheet'.WorkbookcreateWorkbook()Returns a new object of class 'Workbook'.ExcelPackagegetExcelPackage()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.
-
-