Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.sirius.properties.core/src/org/eclipse/sirius/properties/core/internal/expressions/PropertiesInterpretedExpressionQuery.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.sirius.properties.core/src/org/eclipse/sirius/properties/core/internal/expressions/PropertiesInterpretedExpressionQuery.java b/plugins/org.eclipse.sirius.properties.core/src/org/eclipse/sirius/properties/core/internal/expressions/PropertiesInterpretedExpressionQuery.java
index 7ed16b9d11..f41045e3d3 100644
--- a/plugins/org.eclipse.sirius.properties.core/src/org/eclipse/sirius/properties/core/internal/expressions/PropertiesInterpretedExpressionQuery.java
+++ b/plugins/org.eclipse.sirius.properties.core/src/org/eclipse/sirius/properties/core/internal/expressions/PropertiesInterpretedExpressionQuery.java
@@ -265,8 +265,8 @@ public final class PropertiesInterpretedExpressionQuery extends AbstractInterpre
availableVariables.put(EEFExpressionUtils.INPUT, VariableType.fromJavaClass(SiriusInputDescriptor.class));
if (toolContext instanceof InitialOperation) {
EReference callbackFeature = toolContext.eContainmentFeature();
- VariableType stringType = VariableType.fromString("java.lang.String"); //$NON-NLS-1$
- VariableType booleanType = VariableType.fromString("java.lang.Boolean"); //$NON-NLS-1$
+ VariableType stringType = VariableType.fromJavaClass(String.class);
+ VariableType booleanType = VariableType.fromJavaClass(Boolean.class);
VariableType unkownType = VariableType.fromString(TypeName.EOBJECT_TYPENAME.getCompleteName());
if (callbackFeature == PropertiesPackage.Literals.ABSTRACT_TEXT_DESCRIPTION__INITIAL_OPERATION || callbackFeature == PropertiesPackage.Literals.ABSTRACT_TEXT_AREA_DESCRIPTION__INITIAL_OPERATION) {
availableVariables.put(EEFExpressionUtils.EEFText.NEW_VALUE, stringType);

Back to the top