/**
   * 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(
            InteractionPackage.Literals.SEND_INTERACTION__IMPLEMENTATION,
            InteractionFactory.eINSTANCE.createRteSendImplementation()));

    newChildDescriptors.add(
        createChildParameter(
            InteractionPackage.Literals.SEND_INTERACTION__IMPLEMENTATION,
            InteractionFactory.eINSTANCE.createIocSendImplementation()));

    newChildDescriptors.add(
        createChildParameter(
            InteractionPackage.Literals.SEND_INTERACTION__IMPLEMENTATION,
            InteractionFactory.eINSTANCE.createDirectComSendImplementation()));

    newChildDescriptors.add(
        createChildParameter(
            InteractionPackage.Literals.SEND_INTERACTION__IMPLEMENTATION,
            InteractionFactory.eINSTANCE.createTrustedFunctionComSendImplementation()));

    newChildDescriptors.add(
        createChildParameter(
            InteractionPackage.Literals.SEND_INTERACTION__IMPLEMENTATION,
            InteractionFactory.eINSTANCE.createPeriodicProxyComSendImplementation()));

    newChildDescriptors.add(
        createChildParameter(
            InteractionPackage.Literals.SEND_INTERACTION__IMPLEMENTATION,
            InteractionFactory.eINSTANCE.createImmediateProxyComSendImplementation()));

    newChildDescriptors.add(
        createChildParameter(
            InteractionPackage.Literals.SEND_INTERACTION__IMPLEMENTATION,
            InteractionFactory.eINSTANCE.createTrustedFunctionRteSendImplementation()));
  }