Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #1: add support of default attribute values #13

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cz.zcu.yafmt.clang.bcl/plugin.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#

pluginName = BooleanConstraintLanguage Model
providerName = www.example.org
2 changes: 1 addition & 1 deletion cz.zcu.yafmt.clang.bcl/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<package
uri = "http://zcu.cz/yafmt/clang/bcl"
class = "cz.zcu.yafmt.clang.bcl.model.ModelPackage"
genModel = "cz/zcu/yafmt/clang/bcl/BooleanConstraintLanguage.genmodel" />
genModel = "model/BooleanConstraintLanguage.genmodel" />

</extension>
<extension
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,67 +10,67 @@
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link cz.zcu.yafmt.clang.bcl.model.Conjunction#getLeftPart <em>Left Part</em>}</li>
* <li>{@link cz.zcu.yafmt.clang.bcl.model.Conjunction#getRightPart <em>Right Part</em>}</li>
* </ul>
* </p>
*
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getConjunction()
* @model
* @generated
*/
public interface Conjunction extends Expression {
/**
* Returns the value of the '<em><b>Left Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* Returns the value of the '<em><b>Left Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Left Part</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Left Part</em>' containment reference.
* @see #setLeftPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getConjunction_LeftPart()
* @model containment="true"
* @generated
*/
* @return the value of the '<em>Left Part</em>' containment reference.
* @see #setLeftPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getConjunction_LeftPart()
* @model containment="true"
* @generated
*/
Expression getLeftPart();

/**
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Conjunction#getLeftPart <em>Left Part</em>}' containment reference.
* <!-- begin-user-doc -->
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Conjunction#getLeftPart <em>Left Part</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Left Part</em>' containment reference.
* @see #getLeftPart()
* @generated
*/
* @param value the new value of the '<em>Left Part</em>' containment reference.
* @see #getLeftPart()
* @generated
*/
void setLeftPart(Expression value);

/**
* Returns the value of the '<em><b>Right Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* Returns the value of the '<em><b>Right Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Right Part</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Right Part</em>' containment reference.
* @see #setRightPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getConjunction_RightPart()
* @model containment="true"
* @generated
*/
* @return the value of the '<em>Right Part</em>' containment reference.
* @see #setRightPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getConjunction_RightPart()
* @model containment="true"
* @generated
*/
Expression getRightPart();

/**
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Conjunction#getRightPart <em>Right Part</em>}' containment reference.
* <!-- begin-user-doc -->
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Conjunction#getRightPart <em>Right Part</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Right Part</em>' containment reference.
* @see #getRightPart()
* @generated
*/
* @param value the new value of the '<em>Right Part</em>' containment reference.
* @see #getRightPart()
* @generated
*/
void setRightPart(Expression value);

} // Conjunction
Original file line number Diff line number Diff line change
Expand Up @@ -10,67 +10,67 @@
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link cz.zcu.yafmt.clang.bcl.model.Disjunction#getLeftPart <em>Left Part</em>}</li>
* <li>{@link cz.zcu.yafmt.clang.bcl.model.Disjunction#getRightPart <em>Right Part</em>}</li>
* </ul>
* </p>
*
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getDisjunction()
* @model
* @generated
*/
public interface Disjunction extends Expression {
/**
* Returns the value of the '<em><b>Left Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* Returns the value of the '<em><b>Left Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Left Part</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Left Part</em>' containment reference.
* @see #setLeftPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getDisjunction_LeftPart()
* @model containment="true"
* @generated
*/
* @return the value of the '<em>Left Part</em>' containment reference.
* @see #setLeftPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getDisjunction_LeftPart()
* @model containment="true"
* @generated
*/
Expression getLeftPart();

/**
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Disjunction#getLeftPart <em>Left Part</em>}' containment reference.
* <!-- begin-user-doc -->
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Disjunction#getLeftPart <em>Left Part</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Left Part</em>' containment reference.
* @see #getLeftPart()
* @generated
*/
* @param value the new value of the '<em>Left Part</em>' containment reference.
* @see #getLeftPart()
* @generated
*/
void setLeftPart(Expression value);

/**
* Returns the value of the '<em><b>Right Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* Returns the value of the '<em><b>Right Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Right Part</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Right Part</em>' containment reference.
* @see #setRightPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getDisjunction_RightPart()
* @model containment="true"
* @generated
*/
* @return the value of the '<em>Right Part</em>' containment reference.
* @see #setRightPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getDisjunction_RightPart()
* @model containment="true"
* @generated
*/
Expression getRightPart();

/**
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Disjunction#getRightPart <em>Right Part</em>}' containment reference.
* <!-- begin-user-doc -->
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Disjunction#getRightPart <em>Right Part</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Right Part</em>' containment reference.
* @see #getRightPart()
* @generated
*/
* @param value the new value of the '<em>Right Part</em>' containment reference.
* @see #getRightPart()
* @generated
*/
void setRightPart(Expression value);

} // Disjunction
Original file line number Diff line number Diff line change
Expand Up @@ -10,67 +10,67 @@
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link cz.zcu.yafmt.clang.bcl.model.Equation#getLeftPart <em>Left Part</em>}</li>
* <li>{@link cz.zcu.yafmt.clang.bcl.model.Equation#getRightPart <em>Right Part</em>}</li>
* </ul>
* </p>
*
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getEquation()
* @model
* @generated
*/
public interface Equation extends Expression {
/**
* Returns the value of the '<em><b>Left Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* Returns the value of the '<em><b>Left Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Left Part</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Left Part</em>' containment reference.
* @see #setLeftPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getEquation_LeftPart()
* @model containment="true"
* @generated
*/
* @return the value of the '<em>Left Part</em>' containment reference.
* @see #setLeftPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getEquation_LeftPart()
* @model containment="true"
* @generated
*/
Expression getLeftPart();

/**
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Equation#getLeftPart <em>Left Part</em>}' containment reference.
* <!-- begin-user-doc -->
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Equation#getLeftPart <em>Left Part</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Left Part</em>' containment reference.
* @see #getLeftPart()
* @generated
*/
* @param value the new value of the '<em>Left Part</em>' containment reference.
* @see #getLeftPart()
* @generated
*/
void setLeftPart(Expression value);

/**
* Returns the value of the '<em><b>Right Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* Returns the value of the '<em><b>Right Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Right Part</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Right Part</em>' containment reference.
* @see #setRightPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getEquation_RightPart()
* @model containment="true"
* @generated
*/
* @return the value of the '<em>Right Part</em>' containment reference.
* @see #setRightPart(Expression)
* @see cz.zcu.yafmt.clang.bcl.model.ModelPackage#getEquation_RightPart()
* @model containment="true"
* @generated
*/
Expression getRightPart();

/**
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Equation#getRightPart <em>Right Part</em>}' containment reference.
* <!-- begin-user-doc -->
* Sets the value of the '{@link cz.zcu.yafmt.clang.bcl.model.Equation#getRightPart <em>Right Part</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Right Part</em>' containment reference.
* @see #getRightPart()
* @generated
*/
* @param value the new value of the '<em>Right Part</em>' containment reference.
* @see #getRightPart()
* @generated
*/
void setRightPart(Expression value);

} // Equation
Loading