blob: 822af5d2c8da3a05bb26e6747aa01d76519e99b8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2018 Obeo and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Obeo - initial API and implementation
* references WizardNewFileCreationPage, ResourceDialog and ExtendedLoadResourceDialog
*******************************************************************************/
package org.eclipse.ocl.xtext.completeocl.ui.wizards;
import org.eclipse.core.resources.IResource;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.ocl.xtext.base.ui.wizards.AbstractFileDialog;
import org.eclipse.ocl.xtext.base.ui.wizards.AbstractFileNewWizardPage;
public class CompleteOCLFileDialog extends AbstractFileDialog
{
/**
* Creates an extended new complete OCL file creation dialog. If the initial
* resource selection contains exactly one container resource then it will
* be used as the default container resource.
*/
public CompleteOCLFileDialog(@NonNull CompleteOCLFileNewWizard wizard, @NonNull AbstractFileNewWizardPage wizardPage, @Nullable IResource initialSelection) {
super(wizard, wizardPage, initialSelection);
}
}