Interface CoffeeFactory

  • All Superinterfaces:
    org.eclipse.emf.ecore.EFactory, org.eclipse.emf.ecore.EModelElement, org.eclipse.emf.ecore.EObject, org.eclipse.emf.common.notify.Notifier
    All Known Implementing Classes:
    CoffeeFactoryImpl

    public interface CoffeeFactory
    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:
    CoffeePackage
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static CoffeeFactory eINSTANCE
      The singleton instance of the factory.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Activity createActivity()
      Returns a new object of class 'Activity'.
      BrewingUnit createBrewingUnit()
      Returns a new object of class 'Brewing Unit'.
      ControlUnit createControlUnit()
      Returns a new object of class 'Control Unit'.
      Dimension createDimension()
      Returns a new object of class 'Dimension'.
      DipTray createDipTray()
      Returns a new object of class 'Dip Tray'.
      Display createDisplay()
      Returns a new object of class 'Display'.
      Machine createMachine()
      Returns a new object of class 'Machine'.
      Processor createProcessor()
      Returns a new object of class 'Processor'.
      RAM createRAM()
      Returns a new object of class 'RAM'.
      WaterTank createWaterTank()
      Returns a new object of class 'Water Tank'.
      CoffeePackage getCoffeePackage()
      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 CoffeeFactory eINSTANCE
        The singleton instance of the factory.
    • Method Detail

      • createMachine

        Machine createMachine()
        Returns a new object of class 'Machine'.
        Returns:
        a new object of class 'Machine'.
      • createControlUnit

        ControlUnit createControlUnit()
        Returns a new object of class 'Control Unit'.
        Returns:
        a new object of class 'Control Unit'.
      • createBrewingUnit

        BrewingUnit createBrewingUnit()
        Returns a new object of class 'Brewing Unit'.
        Returns:
        a new object of class 'Brewing Unit'.
      • createDipTray

        DipTray createDipTray()
        Returns a new object of class 'Dip Tray'.
        Returns:
        a new object of class 'Dip Tray'.
      • createWaterTank

        WaterTank createWaterTank()
        Returns a new object of class 'Water Tank'.
        Returns:
        a new object of class 'Water Tank'.
      • createProcessor

        Processor createProcessor()
        Returns a new object of class 'Processor'.
        Returns:
        a new object of class 'Processor'.
      • createRAM

        RAM createRAM()
        Returns a new object of class 'RAM'.
        Returns:
        a new object of class 'RAM'.
      • createActivity

        Activity createActivity()
        Returns a new object of class 'Activity'.
        Returns:
        a new object of class 'Activity'.
      • createDimension

        Dimension createDimension()
        Returns a new object of class 'Dimension'.
        Returns:
        a new object of class 'Dimension'.
      • createDisplay

        Display createDisplay()
        Returns a new object of class 'Display'.
        Returns:
        a new object of class 'Display'.
      • getCoffeePackage

        CoffeePackage getCoffeePackage()
        Returns the package supported by this factory.
        Returns:
        the package supported by this factory.