/** * Generated with Acceleo */ package org.obeonetwork.dsl.database.parts; // Start of user code for imports // End of user code /** * * */ public interface ConstraintPropertiesEditionPart { /** * @return the name * */ public String getName(); /** * Defines a new name * @param newValue the new name to set * */ public void setName(String newValue); /** * @return the expression * */ public String getExpression(); /** * Defines a new expression * @param newValue the new expression to set * */ public void setExpression(String newValue); /** * @return the comments * */ public String getComments(); /** * Defines a new comments * @param newValue the new comments to set * */ public void setComments(String newValue); /** * Returns the internationalized title text. * * @return the internationalized title text. * */ public String getTitle(); // Start of user code for additional methods // End of user code }