use of org.obeonetwork.dsl.database.Constraint in project InformationSystem by ObeoNetwork.
the class UpdateConstraintItemProvider method getText.
/**
* This returns the label text for the adapted class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
@Override
public String getText(Object object) {
UpdateConstraint updateConstraint = (UpdateConstraint) object;
Constraint constraint = updateConstraint.getConstraint();
return getString("_UI_UpdateConstraint_type") + " " + constraint.getName();
}
Aggregations