/** * Generated with Acceleo */ package org.obeonetwork.dsl.database.parts; // Start of user code for imports // End of user code /** * * */ public interface SequencePropertiesEditionPart { /** * @return the name * */ public String getName(); /** * Defines a new name * @param newValue the new name to set * */ public void setName(String newValue); /** * @return the start * */ public String getStart(); /** * Defines a new start * @param newValue the new start to set * */ public void setStart(String newValue); /** * @return the increment * */ public String getIncrement(); /** * Defines a new increment * @param newValue the new increment to set * */ public void setIncrement(String newValue); /** * @return the min value * */ public String getMinValue(); /** * Defines a new min value * @param newValue the new min value to set * */ public void setMinValue(String newValue); /** * @return the max value * */ public String getMaxValue(); /** * Defines a new max value * @param newValue the new max value to set * */ public void setMaxValue(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 }