Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.eef.tests.nonreg.edit/src-gen/org/eclipse/emf/eef/eefnr/parts/forms/SamplePropertiesEditionPartForm.java')
-rw-r--r--tests/org.eclipse.emf.eef.tests.nonreg.edit/src-gen/org/eclipse/emf/eef/eefnr/parts/forms/SamplePropertiesEditionPartForm.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/org.eclipse.emf.eef.tests.nonreg.edit/src-gen/org/eclipse/emf/eef/eefnr/parts/forms/SamplePropertiesEditionPartForm.java b/tests/org.eclipse.emf.eef.tests.nonreg.edit/src-gen/org/eclipse/emf/eef/eefnr/parts/forms/SamplePropertiesEditionPartForm.java
index d33ea1a8f..b8abe5370 100644
--- a/tests/org.eclipse.emf.eef.tests.nonreg.edit/src-gen/org/eclipse/emf/eef/eefnr/parts/forms/SamplePropertiesEditionPartForm.java
+++ b/tests/org.eclipse.emf.eef.tests.nonreg.edit/src-gen/org/eclipse/emf/eef/eefnr/parts/forms/SamplePropertiesEditionPartForm.java
@@ -300,14 +300,6 @@ public class SamplePropertiesEditionPartForm extends SectionPropertiesEditingPar
} else {
textRequiredProperty.setText(""); //$NON-NLS-1$
}
- boolean readOnly = isReadOnly(EefnrViewsRepository.Sample.Properties.textRequiredProperty);
- if (readOnly && textRequiredProperty.isEnabled()) {
- textRequiredProperty.setEnabled(false);
- textRequiredProperty.setToolTipText(EefnrMessages.Sample_ReadOnly);
- } else if (!readOnly && !textRequiredProperty.isEnabled()) {
- textRequiredProperty.setEnabled(true);
- }
-
}
/**
@@ -332,14 +324,6 @@ public class SamplePropertiesEditionPartForm extends SectionPropertiesEditingPar
} else {
textOptionalProperty.setText(""); //$NON-NLS-1$
}
- boolean readOnly = isReadOnly(EefnrViewsRepository.Sample.Properties.textOptionalProperty);
- if (readOnly && textOptionalProperty.isEnabled()) {
- textOptionalProperty.setEnabled(false);
- textOptionalProperty.setToolTipText(EefnrMessages.Sample_ReadOnly);
- } else if (!readOnly && !textOptionalProperty.isEnabled()) {
- textOptionalProperty.setEnabled(true);
- }
-
}

Back to the top