/**
   * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children that
   * can be created under this object.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   *
   * @generated
   */
  @Override
  protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
    super.collectNewChildDescriptors(newChildDescriptors, object);

    newChildDescriptors.add(
        createChildParameter(
            Aadl2Package.eINSTANCE.getProcessImplementation_OwnedDataSubcomponent(),
            Aadl2Factory.eINSTANCE.createDataSubcomponent()));

    newChildDescriptors.add(
        createChildParameter(
            Aadl2Package.eINSTANCE.getProcessImplementation_OwnedSubprogramSubcomponent(),
            Aadl2Factory.eINSTANCE.createSubprogramSubcomponent()));

    newChildDescriptors.add(
        createChildParameter(
            Aadl2Package.eINSTANCE.getProcessImplementation_OwnedSubprogramGroupSubcomponent(),
            Aadl2Factory.eINSTANCE.createSubprogramGroupSubcomponent()));

    newChildDescriptors.add(
        createChildParameter(
            Aadl2Package.eINSTANCE.getProcessImplementation_OwnedThreadSubcomponent(),
            Aadl2Factory.eINSTANCE.createThreadSubcomponent()));

    newChildDescriptors.add(
        createChildParameter(
            Aadl2Package.eINSTANCE.getProcessImplementation_OwnedThreadGroupSubcomponent(),
            Aadl2Factory.eINSTANCE.createThreadGroupSubcomponent()));
  }