/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * 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 *******************************************************************************/ package org.eclipse.emf.eef.EEFGen.parts.forms; // Start of user code for imports import org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart; import org.eclipse.emf.eef.EEFGen.parts.EEFGenViewsRepository; import org.eclipse.emf.eef.EEFGen.providers.EEFGenMessages; import org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent; import org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent; import org.eclipse.emf.eef.runtime.api.parts.IFormPropertiesEditionPart; import org.eclipse.emf.eef.runtime.impl.notify.PropertiesEditionEvent; import org.eclipse.emf.eef.runtime.part.impl.SectionPropertiesEditingPart; import org.eclipse.emf.eef.runtime.ui.parts.PartComposer; import org.eclipse.emf.eef.runtime.ui.parts.sequence.BindingCompositionSequence; import org.eclipse.emf.eef.runtime.ui.parts.sequence.CompositionSequence; import org.eclipse.emf.eef.runtime.ui.parts.sequence.CompositionStep; import org.eclipse.emf.eef.runtime.ui.utils.EditingUtils; import org.eclipse.emf.eef.runtime.ui.widgets.FormUtils; import org.eclipse.swt.SWT; import org.eclipse.swt.events.FocusAdapter; import org.eclipse.swt.events.FocusEvent; import org.eclipse.swt.events.KeyAdapter; import org.eclipse.swt.events.KeyEvent; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Text; import org.eclipse.ui.forms.widgets.Form; import org.eclipse.ui.forms.widgets.FormToolkit; import org.eclipse.ui.forms.widgets.ScrolledForm; import org.eclipse.ui.forms.widgets.Section; import org.eclipse.ui.views.properties.tabbed.ISection; // End of user code /** * @author <a href="mailto:nathalie.lepine@obeo.fr">Nathalie Lepine</a> * */ public class EEFGenModelPropertiesEditionPartForm extends SectionPropertiesEditingPart implements IFormPropertiesEditionPart, EEFGenModelPropertiesEditionPart { protected Text generationDirectory; protected Text testsGenerationDirectory; protected Button useJMergeToManageUserCode; protected Text author; protected Text license; /** * For {@link ISection} use only. */ public EEFGenModelPropertiesEditionPartForm() { super(); } /** * Default constructor * @param editionComponent the {@link IPropertiesEditionComponent} that manage this part * */ public EEFGenModelPropertiesEditionPartForm(IPropertiesEditionComponent editionComponent) { super(editionComponent); } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.api.parts.IFormPropertiesEditionPart# * createFigure(org.eclipse.swt.widgets.Composite, org.eclipse.ui.forms.widgets.FormToolkit) * */ public Composite createFigure(final Composite parent, final FormToolkit widgetFactory) { ScrolledForm scrolledForm = widgetFactory.createScrolledForm(parent); Form form = scrolledForm.getForm(); view = form.getBody(); GridLayout layout = new GridLayout(); layout.numColumns = 3; view.setLayout(layout); createControls(widgetFactory, view); return scrolledForm; } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.api.parts.IFormPropertiesEditionPart# * createControls(org.eclipse.ui.forms.widgets.FormToolkit, org.eclipse.swt.widgets.Composite) * */ public void createControls(final FormToolkit widgetFactory, Composite view) { CompositionSequence eEFGenModelStep = new BindingCompositionSequence(propertiesEditionComponent); CompositionStep parametersStep = eEFGenModelStep.addStep(EEFGenViewsRepository.EEFGenModel.Parameters.class); parametersStep.addStep(EEFGenViewsRepository.EEFGenModel.Parameters.generationDirectory); parametersStep.addStep(EEFGenViewsRepository.EEFGenModel.Parameters.testsGenerationDirectory); parametersStep.addStep(EEFGenViewsRepository.EEFGenModel.Parameters.useJMergeToManageUserCode); CompositionStep legalStep = eEFGenModelStep.addStep(EEFGenViewsRepository.EEFGenModel.Legal.class); legalStep.addStep(EEFGenViewsRepository.EEFGenModel.Legal.author); legalStep.addStep(EEFGenViewsRepository.EEFGenModel.Legal.license); composer = new PartComposer(eEFGenModelStep) { @Override public Composite addToPart(Composite parent, Object key) { if (key == EEFGenViewsRepository.EEFGenModel.Parameters.class) { return createParametersGroup(widgetFactory, parent); } if (key == EEFGenViewsRepository.EEFGenModel.Parameters.generationDirectory) { return createGenerationDirectoryText(widgetFactory, parent); } if (key == EEFGenViewsRepository.EEFGenModel.Parameters.testsGenerationDirectory) { return createTestsGenerationDirectoryText(widgetFactory, parent); } if (key == EEFGenViewsRepository.EEFGenModel.Parameters.useJMergeToManageUserCode) { return createUseJMergeToManageUserCodeCheckbox(widgetFactory, parent); } if (key == EEFGenViewsRepository.EEFGenModel.Legal.class) { return createLegalGroup(widgetFactory, parent); } if (key == EEFGenViewsRepository.EEFGenModel.Legal.author) { return createAuthorText(widgetFactory, parent); } if (key == EEFGenViewsRepository.EEFGenModel.Legal.license) { return createLicenseTextarea(widgetFactory, parent); } return parent; } }; composer.compose(view); } /** * */ protected Composite createParametersGroup(FormToolkit widgetFactory, final Composite parent) { Section parametersSection = widgetFactory.createSection(parent, Section.TITLE_BAR | Section.TWISTIE | Section.EXPANDED); parametersSection.setText(EEFGenMessages.EEFGenModelPropertiesEditionPart_ParametersGroupLabel); GridData parametersSectionData = new GridData(GridData.FILL_HORIZONTAL); parametersSectionData.horizontalSpan = 3; parametersSection.setLayoutData(parametersSectionData); Composite parametersGroup = widgetFactory.createComposite(parametersSection); GridLayout parametersGroupLayout = new GridLayout(); parametersGroupLayout.numColumns = 3; parametersGroup.setLayout(parametersGroupLayout); parametersSection.setClient(parametersGroup); return parametersGroup; } protected Composite createGenerationDirectoryText(FormToolkit widgetFactory, Composite parent) { createDescription(parent, EEFGenViewsRepository.EEFGenModel.Parameters.generationDirectory, EEFGenMessages.EEFGenModelPropertiesEditionPart_GenerationDirectoryLabel); generationDirectory = widgetFactory.createText(parent, ""); //$NON-NLS-1$ generationDirectory.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TEXT_BORDER); widgetFactory.paintBordersFor(parent); GridData generationDirectoryData = new GridData(GridData.FILL_HORIZONTAL); generationDirectory.setLayoutData(generationDirectoryData); generationDirectory.addFocusListener(new FocusAdapter() { /** * @see org.eclipse.swt.events.FocusAdapter#focusLost(org.eclipse.swt.events.FocusEvent) * */ @Override @SuppressWarnings("synthetic-access") public void focusLost(FocusEvent e) { if (propertiesEditionComponent != null) { propertiesEditionComponent.firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Parameters.generationDirectory, PropertiesEditionEvent.COMMIT, PropertiesEditionEvent.SET, null, generationDirectory.getText())); propertiesEditionComponent .firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Parameters.generationDirectory, PropertiesEditionEvent.FOCUS_CHANGED, PropertiesEditionEvent.FOCUS_LOST, null, generationDirectory.getText())); } } /** * @see org.eclipse.swt.events.FocusAdapter#focusGained(org.eclipse.swt.events.FocusEvent) */ @Override public void focusGained(FocusEvent e) { if (propertiesEditionComponent != null) { propertiesEditionComponent .firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, null, PropertiesEditionEvent.FOCUS_CHANGED, PropertiesEditionEvent.FOCUS_GAINED, null, null)); } } }); generationDirectory.addKeyListener(new KeyAdapter() { /** * @see org.eclipse.swt.events.KeyAdapter#keyPressed(org.eclipse.swt.events.KeyEvent) * */ @Override @SuppressWarnings("synthetic-access") public void keyPressed(KeyEvent e) { if (e.character == SWT.CR) { if (propertiesEditionComponent != null) propertiesEditionComponent.firePropertiesChanged(new PropertiesEditionEvent(EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Parameters.generationDirectory, PropertiesEditionEvent.COMMIT, PropertiesEditionEvent.SET, null, generationDirectory.getText())); } } }); EditingUtils.setID(generationDirectory, EEFGenViewsRepository.EEFGenModel.Parameters.generationDirectory); EditingUtils.setEEFtype(generationDirectory, "eef::Text"); //$NON-NLS-1$ FormUtils.createHelpButton(widgetFactory, parent, propertiesEditionComponent.getHelpContent(EEFGenViewsRepository.EEFGenModel.Parameters.generationDirectory, EEFGenViewsRepository.FORM_KIND), null); //$NON-NLS-1$ // Start of user code for createGenerationDirectoryText // End of user code return parent; } protected Composite createTestsGenerationDirectoryText(FormToolkit widgetFactory, Composite parent) { createDescription(parent, EEFGenViewsRepository.EEFGenModel.Parameters.testsGenerationDirectory, EEFGenMessages.EEFGenModelPropertiesEditionPart_TestsGenerationDirectoryLabel); testsGenerationDirectory = widgetFactory.createText(parent, ""); //$NON-NLS-1$ testsGenerationDirectory.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TEXT_BORDER); widgetFactory.paintBordersFor(parent); GridData testsGenerationDirectoryData = new GridData(GridData.FILL_HORIZONTAL); testsGenerationDirectory.setLayoutData(testsGenerationDirectoryData); testsGenerationDirectory.addFocusListener(new FocusAdapter() { /** * @see org.eclipse.swt.events.FocusAdapter#focusLost(org.eclipse.swt.events.FocusEvent) * */ @Override @SuppressWarnings("synthetic-access") public void focusLost(FocusEvent e) { if (propertiesEditionComponent != null) { propertiesEditionComponent.firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Parameters.testsGenerationDirectory, PropertiesEditionEvent.COMMIT, PropertiesEditionEvent.SET, null, testsGenerationDirectory.getText())); propertiesEditionComponent .firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Parameters.testsGenerationDirectory, PropertiesEditionEvent.FOCUS_CHANGED, PropertiesEditionEvent.FOCUS_LOST, null, testsGenerationDirectory.getText())); } } /** * @see org.eclipse.swt.events.FocusAdapter#focusGained(org.eclipse.swt.events.FocusEvent) */ @Override public void focusGained(FocusEvent e) { if (propertiesEditionComponent != null) { propertiesEditionComponent .firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, null, PropertiesEditionEvent.FOCUS_CHANGED, PropertiesEditionEvent.FOCUS_GAINED, null, null)); } } }); testsGenerationDirectory.addKeyListener(new KeyAdapter() { /** * @see org.eclipse.swt.events.KeyAdapter#keyPressed(org.eclipse.swt.events.KeyEvent) * */ @Override @SuppressWarnings("synthetic-access") public void keyPressed(KeyEvent e) { if (e.character == SWT.CR) { if (propertiesEditionComponent != null) propertiesEditionComponent.firePropertiesChanged(new PropertiesEditionEvent(EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Parameters.testsGenerationDirectory, PropertiesEditionEvent.COMMIT, PropertiesEditionEvent.SET, null, testsGenerationDirectory.getText())); } } }); EditingUtils.setID(testsGenerationDirectory, EEFGenViewsRepository.EEFGenModel.Parameters.testsGenerationDirectory); EditingUtils.setEEFtype(testsGenerationDirectory, "eef::Text"); //$NON-NLS-1$ FormUtils.createHelpButton(widgetFactory, parent, propertiesEditionComponent.getHelpContent(EEFGenViewsRepository.EEFGenModel.Parameters.testsGenerationDirectory, EEFGenViewsRepository.FORM_KIND), null); //$NON-NLS-1$ // Start of user code for createTestsGenerationDirectoryText // End of user code return parent; } protected Composite createUseJMergeToManageUserCodeCheckbox(FormToolkit widgetFactory, Composite parent) { useJMergeToManageUserCode = widgetFactory.createButton(parent, getDescription(EEFGenViewsRepository.EEFGenModel.Parameters.useJMergeToManageUserCode, EEFGenMessages.EEFGenModelPropertiesEditionPart_UseJMergeToManageUserCodeLabel), SWT.CHECK); useJMergeToManageUserCode.addSelectionListener(new SelectionAdapter() { /** * {@inheritDoc} * * @see org.eclipse.swt.events.SelectionAdapter#widgetSelected(org.eclipse.swt.events.SelectionEvent) * */ public void widgetSelected(SelectionEvent e) { if (propertiesEditionComponent != null) propertiesEditionComponent.firePropertiesChanged(new PropertiesEditionEvent(EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Parameters.useJMergeToManageUserCode, PropertiesEditionEvent.COMMIT, PropertiesEditionEvent.SET, null, new Boolean(useJMergeToManageUserCode.getSelection()))); } }); GridData useJMergeToManageUserCodeData = new GridData(GridData.FILL_HORIZONTAL); useJMergeToManageUserCodeData.horizontalSpan = 2; useJMergeToManageUserCode.setLayoutData(useJMergeToManageUserCodeData); EditingUtils.setID(useJMergeToManageUserCode, EEFGenViewsRepository.EEFGenModel.Parameters.useJMergeToManageUserCode); EditingUtils.setEEFtype(useJMergeToManageUserCode, "eef::Checkbox"); //$NON-NLS-1$ FormUtils.createHelpButton(widgetFactory, parent, propertiesEditionComponent.getHelpContent(EEFGenViewsRepository.EEFGenModel.Parameters.useJMergeToManageUserCode, EEFGenViewsRepository.FORM_KIND), null); //$NON-NLS-1$ // Start of user code for createUseJMergeToManageUserCodeCheckbox // End of user code return parent; } /** * */ protected Composite createLegalGroup(FormToolkit widgetFactory, final Composite parent) { Section legalSection = widgetFactory.createSection(parent, Section.TITLE_BAR | Section.TWISTIE | Section.EXPANDED); legalSection.setText(EEFGenMessages.EEFGenModelPropertiesEditionPart_LegalGroupLabel); GridData legalSectionData = new GridData(GridData.FILL_HORIZONTAL); legalSectionData.horizontalSpan = 3; legalSection.setLayoutData(legalSectionData); Composite legalGroup = widgetFactory.createComposite(legalSection); GridLayout legalGroupLayout = new GridLayout(); legalGroupLayout.numColumns = 3; legalGroup.setLayout(legalGroupLayout); legalSection.setClient(legalGroup); return legalGroup; } protected Composite createAuthorText(FormToolkit widgetFactory, Composite parent) { createDescription(parent, EEFGenViewsRepository.EEFGenModel.Legal.author, EEFGenMessages.EEFGenModelPropertiesEditionPart_AuthorLabel); author = widgetFactory.createText(parent, ""); //$NON-NLS-1$ author.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TEXT_BORDER); widgetFactory.paintBordersFor(parent); GridData authorData = new GridData(GridData.FILL_HORIZONTAL); author.setLayoutData(authorData); author.addFocusListener(new FocusAdapter() { /** * @see org.eclipse.swt.events.FocusAdapter#focusLost(org.eclipse.swt.events.FocusEvent) * */ @Override @SuppressWarnings("synthetic-access") public void focusLost(FocusEvent e) { if (propertiesEditionComponent != null) { propertiesEditionComponent.firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Legal.author, PropertiesEditionEvent.COMMIT, PropertiesEditionEvent.SET, null, author.getText())); propertiesEditionComponent .firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Legal.author, PropertiesEditionEvent.FOCUS_CHANGED, PropertiesEditionEvent.FOCUS_LOST, null, author.getText())); } } /** * @see org.eclipse.swt.events.FocusAdapter#focusGained(org.eclipse.swt.events.FocusEvent) */ @Override public void focusGained(FocusEvent e) { if (propertiesEditionComponent != null) { propertiesEditionComponent .firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, null, PropertiesEditionEvent.FOCUS_CHANGED, PropertiesEditionEvent.FOCUS_GAINED, null, null)); } } }); author.addKeyListener(new KeyAdapter() { /** * @see org.eclipse.swt.events.KeyAdapter#keyPressed(org.eclipse.swt.events.KeyEvent) * */ @Override @SuppressWarnings("synthetic-access") public void keyPressed(KeyEvent e) { if (e.character == SWT.CR) { if (propertiesEditionComponent != null) propertiesEditionComponent.firePropertiesChanged(new PropertiesEditionEvent(EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Legal.author, PropertiesEditionEvent.COMMIT, PropertiesEditionEvent.SET, null, author.getText())); } } }); EditingUtils.setID(author, EEFGenViewsRepository.EEFGenModel.Legal.author); EditingUtils.setEEFtype(author, "eef::Text"); //$NON-NLS-1$ FormUtils.createHelpButton(widgetFactory, parent, propertiesEditionComponent.getHelpContent(EEFGenViewsRepository.EEFGenModel.Legal.author, EEFGenViewsRepository.FORM_KIND), null); //$NON-NLS-1$ // Start of user code for createAuthorText // End of user code return parent; } protected Composite createLicenseTextarea(FormToolkit widgetFactory, Composite parent) { Label licenseLabel = createDescription(parent, EEFGenViewsRepository.EEFGenModel.Legal.license, EEFGenMessages.EEFGenModelPropertiesEditionPart_LicenseLabel); GridData licenseLabelData = new GridData(GridData.FILL_HORIZONTAL); licenseLabelData.horizontalSpan = 3; licenseLabel.setLayoutData(licenseLabelData); license = widgetFactory.createText(parent, "", SWT.BORDER | SWT.WRAP | SWT.MULTI | SWT.V_SCROLL); //$NON-NLS-1$ GridData licenseData = new GridData(GridData.FILL_HORIZONTAL); licenseData.horizontalSpan = 2; licenseData.heightHint = 80; licenseData.widthHint = 200; license.setLayoutData(licenseData); license.addFocusListener(new FocusAdapter() { /** * {@inheritDoc} * * @see org.eclipse.swt.events.FocusAdapter#focusLost(org.eclipse.swt.events.FocusEvent) * */ public void focusLost(FocusEvent e) { if (propertiesEditionComponent != null) { propertiesEditionComponent.firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Legal.license, PropertiesEditionEvent.COMMIT, PropertiesEditionEvent.SET, null, license.getText())); propertiesEditionComponent .firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, EEFGenViewsRepository.EEFGenModel.Legal.license, PropertiesEditionEvent.FOCUS_CHANGED, PropertiesEditionEvent.FOCUS_LOST, null, license.getText())); } } /** * @see org.eclipse.swt.events.FocusAdapter#focusGained(org.eclipse.swt.events.FocusEvent) */ @Override public void focusGained(FocusEvent e) { if (propertiesEditionComponent != null) { propertiesEditionComponent .firePropertiesChanged(new PropertiesEditionEvent( EEFGenModelPropertiesEditionPartForm.this, null, PropertiesEditionEvent.FOCUS_CHANGED, PropertiesEditionEvent.FOCUS_GAINED, null, null)); } } }); EditingUtils.setID(license, EEFGenViewsRepository.EEFGenModel.Legal.license); EditingUtils.setEEFtype(license, "eef::Textarea"); //$NON-NLS-1$ FormUtils.createHelpButton(widgetFactory, parent, propertiesEditionComponent.getHelpContent(EEFGenViewsRepository.EEFGenModel.Legal.license, EEFGenViewsRepository.FORM_KIND), null); //$NON-NLS-1$ // Start of user code for createLicenseTextArea // End of user code return parent; } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionListener#firePropertiesChanged(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent) * */ public void firePropertiesChanged(IPropertiesEditionEvent event) { // Start of user code for tab synchronization // End of user code } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#getGenerationDirectory() * */ public String getGenerationDirectory() { return generationDirectory.getText(); } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#setGenerationDirectory(String newValue) * */ public void setGenerationDirectory(String newValue) { if (newValue != null) { generationDirectory.setText(newValue); } else { generationDirectory.setText(""); //$NON-NLS-1$ } boolean eefElementEditorReadOnlyState = isReadOnly(EEFGenViewsRepository.EEFGenModel.Parameters.generationDirectory); if (eefElementEditorReadOnlyState && generationDirectory.isEnabled()) { generationDirectory.setEnabled(false); generationDirectory.setToolTipText(EEFGenMessages.EEFGenModel_ReadOnly); } else if (!eefElementEditorReadOnlyState && !generationDirectory.isEnabled()) { generationDirectory.setEnabled(true); } } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#getTestsGenerationDirectory() * */ public String getTestsGenerationDirectory() { return testsGenerationDirectory.getText(); } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#setTestsGenerationDirectory(String newValue) * */ public void setTestsGenerationDirectory(String newValue) { if (newValue != null) { testsGenerationDirectory.setText(newValue); } else { testsGenerationDirectory.setText(""); //$NON-NLS-1$ } boolean eefElementEditorReadOnlyState = isReadOnly(EEFGenViewsRepository.EEFGenModel.Parameters.testsGenerationDirectory); if (eefElementEditorReadOnlyState && testsGenerationDirectory.isEnabled()) { testsGenerationDirectory.setEnabled(false); testsGenerationDirectory.setToolTipText(EEFGenMessages.EEFGenModel_ReadOnly); } else if (!eefElementEditorReadOnlyState && !testsGenerationDirectory.isEnabled()) { testsGenerationDirectory.setEnabled(true); } } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#getUseJMergeToManageUserCode() * */ public Boolean getUseJMergeToManageUserCode() { return Boolean.valueOf(useJMergeToManageUserCode.getSelection()); } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#setUseJMergeToManageUserCode(Boolean newValue) * */ public void setUseJMergeToManageUserCode(Boolean newValue) { if (newValue != null) { useJMergeToManageUserCode.setSelection(newValue.booleanValue()); } else { useJMergeToManageUserCode.setSelection(false); } boolean eefElementEditorReadOnlyState = isReadOnly(EEFGenViewsRepository.EEFGenModel.Parameters.useJMergeToManageUserCode); if (eefElementEditorReadOnlyState && useJMergeToManageUserCode.isEnabled()) { useJMergeToManageUserCode.setEnabled(false); useJMergeToManageUserCode.setToolTipText(EEFGenMessages.EEFGenModel_ReadOnly); } else if (!eefElementEditorReadOnlyState && !useJMergeToManageUserCode.isEnabled()) { useJMergeToManageUserCode.setEnabled(true); } } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#getAuthor() * */ public String getAuthor() { return author.getText(); } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#setAuthor(String newValue) * */ public void setAuthor(String newValue) { if (newValue != null) { author.setText(newValue); } else { author.setText(""); //$NON-NLS-1$ } boolean eefElementEditorReadOnlyState = isReadOnly(EEFGenViewsRepository.EEFGenModel.Legal.author); if (eefElementEditorReadOnlyState && author.isEnabled()) { author.setEnabled(false); author.setToolTipText(EEFGenMessages.EEFGenModel_ReadOnly); } else if (!eefElementEditorReadOnlyState && !author.isEnabled()) { author.setEnabled(true); } } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#getLicense() * */ public String getLicense() { return license.getText(); } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.EEFGen.parts.EEFGenModelPropertiesEditionPart#setLicense(String newValue) * */ public void setLicense(String newValue) { if (newValue != null) { license.setText(newValue); } else { license.setText(""); //$NON-NLS-1$ } boolean eefElementEditorReadOnlyState = isReadOnly(EEFGenViewsRepository.EEFGenModel.Legal.license); if (eefElementEditorReadOnlyState && license.isEnabled()) { license.setEnabled(false); license.setBackground(license.getDisplay().getSystemColor(SWT.COLOR_WIDGET_BACKGROUND)); license.setToolTipText(EEFGenMessages.EEFGenModel_ReadOnly); } else if (!eefElementEditorReadOnlyState && !license.isEnabled()) { license.setEnabled(true); } } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.api.parts.IPropertiesEditionPart#getTitle() * */ public String getTitle() { return EEFGenMessages.EEFGenModel_Part_Title; } // Start of user code additional methods // End of user code }