use of org.obeonetwork.dsl.database.dbevolution.ConstraintChange in project InformationSystem by ObeoNetwork.
the class ConstraintChangeItemProvider 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) {
ConstraintChange constraintChange = (ConstraintChange) object;
Constraint constraint = constraintChange.getConstraint();
return getString("_UI_ConstraintChange_type") + " " + constraint.getName();
}
Aggregations