From 42c58bbeead1dae09c51f47abc8e10dfbb9c3f9f Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Tue, 23 Jun 2020 15:17:00 +0200 Subject: New configuration language parser WIP --- .../solver/language/solverLanguage/IfElse.java | 92 ---------------------- 1 file changed, 92 deletions(-) delete mode 100644 Application/org.eclipse.viatra.solver.language/ecore-gen/org/eclipse/viatra/solver/language/solverLanguage/IfElse.java (limited to 'Application/org.eclipse.viatra.solver.language/ecore-gen/org/eclipse/viatra/solver/language/solverLanguage/IfElse.java') diff --git a/Application/org.eclipse.viatra.solver.language/ecore-gen/org/eclipse/viatra/solver/language/solverLanguage/IfElse.java b/Application/org.eclipse.viatra.solver.language/ecore-gen/org/eclipse/viatra/solver/language/solverLanguage/IfElse.java deleted file mode 100644 index d32ca1e3..00000000 --- a/Application/org.eclipse.viatra.solver.language/ecore-gen/org/eclipse/viatra/solver/language/solverLanguage/IfElse.java +++ /dev/null @@ -1,92 +0,0 @@ -/** - * generated by Xtext 2.21.0 - */ -package org.eclipse.viatra.solver.language.solverLanguage; - - -/** - * - * A representation of the model object 'If Else'. - * - * - *

- * The following features are supported: - *

- * - * - * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getIfElse() - * @model - * @generated - */ -public interface IfElse extends Expression { - /** - * Returns the value of the 'Then' containment reference. - * - * - * @return the value of the 'Then' containment reference. - * @see #setThen(Expression) - * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getIfElse_Then() - * @model containment="true" - * @generated - */ - Expression getThen(); - - /** - * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.IfElse#getThen Then}' containment reference. - * - * - * @param value the new value of the 'Then' containment reference. - * @see #getThen() - * @generated - */ - void setThen(Expression value); - - /** - * Returns the value of the 'Else' containment reference. - * - * - * @return the value of the 'Else' containment reference. - * @see #setElse(Expression) - * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getIfElse_Else() - * @model containment="true" - * @generated - */ - Expression getElse(); - - /** - * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.IfElse#getElse Else}' containment reference. - * - * - * @param value the new value of the 'Else' containment reference. - * @see #getElse() - * @generated - */ - void setElse(Expression value); - - /** - * Returns the value of the 'Condition' containment reference. - * - * - * @return the value of the 'Condition' containment reference. - * @see #setCondition(Expression) - * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getIfElse_Condition() - * @model containment="true" - * @generated - */ - Expression getCondition(); - - /** - * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.IfElse#getCondition Condition}' containment reference. - * - * - * @param value the new value of the 'Condition' containment reference. - * @see #getCondition() - * @generated - */ - void setCondition(Expression value); - -} // IfElse -- cgit v1.2.3-54-g00ecf