-
- All Superinterfaces:
EFactory,EModelElement,EObject,Notifier
- All Known Implementing Classes:
HtmlFactoryImpl
public interface HtmlFactory extends EFactory
The Factory for the model. It provides a create method for each non-abstract class of the model.- See Also:
HtmlPackage
-
-
Field Summary
Fields Modifier and Type Field Description static HtmlFactoryeINSTANCEThe singleton instance of the factory.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PagecreatePage()Returns a new object of class 'Page'.ScriptcreateScript()Returns a new object of class 'Script'.ScriptReferencecreateScriptReference()Returns a new object of class 'Script Reference'.StylesheetcreateStylesheet()Returns a new object of class 'Stylesheet'.StylesheetReferencecreateStylesheetReference()Returns a new object of class 'Stylesheet Reference'.TagcreateTag()Returns a new object of class 'Tag'.HtmlPackagegetHtmlPackage()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
-
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 org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
-
-
-
-
Field Detail
-
eINSTANCE
static final HtmlFactory eINSTANCE
The singleton instance of the factory.
-
-
Method Detail
-
createTag
Tag createTag()
Returns a new object of class 'Tag'.- Returns:
- a new object of class 'Tag'.
-
createPage
Page createPage()
Returns a new object of class 'Page'.- Returns:
- a new object of class 'Page'.
-
createStylesheet
Stylesheet createStylesheet()
Returns a new object of class 'Stylesheet'.- Returns:
- a new object of class 'Stylesheet'.
-
createStylesheetReference
StylesheetReference createStylesheetReference()
Returns a new object of class 'Stylesheet Reference'.- Returns:
- a new object of class 'Stylesheet Reference'.
-
createScript
Script createScript()
Returns a new object of class 'Script'.- Returns:
- a new object of class 'Script'.
-
createScriptReference
ScriptReference createScriptReference()
Returns a new object of class 'Script Reference'.- Returns:
- a new object of class 'Script Reference'.
-
getHtmlPackage
HtmlPackage getHtmlPackage()
Returns the package supported by this factory.- Returns:
- the package supported by this factory.
-
-