/******************************************************************************* * Copyright (c) 2013, 2014 Obeo and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.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); } }