blob: 87bef5987d05822a1ad1846d5c27911808b81701 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.emc.simuink.dictionary.dt;
import org.eclipse.epsilon.emc.simulink.common.dt.AbstractSimulinkModelConfigurationDialog;
import org.eclipse.swt.widgets.Composite;
public class SimulinkDictionaryModelConfigurationDialog extends AbstractSimulinkModelConfigurationDialog {
protected String getModelName() {
return "Simulink Dictionary Model";
}
protected String getModelType() {
return "SimulinkDictionary";
}
protected Composite createFilesGroup(Composite parent) {
final Composite groupContent = super.createFilesGroup(parent);
modelFileTextLabel.setText("Dictionary file (?): ");
return groupContent;
}
@Override
protected boolean enableOpenOnLoad() {
return false;
}
}