Class ConditionalExpressionExtension
- java.lang.Object
-
- org.emftext.language.java.extensions.expressions.ConditionalExpressionExtension
-
public class ConditionalExpressionExtension extends Object
-
-
Constructor Summary
Constructors Constructor Description ConditionalExpressionExtension()
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static AssignmentExpressionChild
getExpressionElse(ConditionalExpression me)
Deprecated.Use getGeneralExpressionElse().static void
setExpressionElse(ConditionalExpression me, AssignmentExpressionChild newChild)
Deprecated.Use setGeneralExpressionElse(Expression).
-
-
-
Method Detail
-
getExpressionElse
@Deprecated public static AssignmentExpressionChild getExpressionElse(ConditionalExpression me)
Deprecated.Use getGeneralExpressionElse().Gets the expression of the else case. This is a legacy method to provide a stable and backwards-compatible API.- Parameters:
me
- the ConditionalExpression for which the else expression is returned.- Returns:
- the expression of the else case.
-
setExpressionElse
@Deprecated public static void setExpressionElse(ConditionalExpression me, AssignmentExpressionChild newChild)
Deprecated.Use setGeneralExpressionElse(Expression).Sets the expression for the else case. This is a legacy method to provide a stable and backwards-compatible API.- Parameters:
me
- the ConditionalExpression for which the else case is set.newChild
- the new child for the else case.
-
-