/** * Copyright (c) 2011 Obeo. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Obeo - initial API and implementation */ package org.obeonetwork.dsl.database; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Sequence</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.obeonetwork.dsl.database.Sequence#getStart <em>Start</em>}</li> * <li>{@link org.obeonetwork.dsl.database.Sequence#getIncrement <em>Increment</em>}</li> * <li>{@link org.obeonetwork.dsl.database.Sequence#getMinValue <em>Min Value</em>}</li> * <li>{@link org.obeonetwork.dsl.database.Sequence#getMaxValue <em>Max Value</em>}</li> * </ul> * </p> * * @see org.obeonetwork.dsl.database.DatabasePackage#getSequence() * @model * @generated */ public interface Sequence extends NamedElement { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright (c) 2011 Obeo.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Obeo - initial API and implementation"; /** * Returns the value of the '<em><b>Start</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Start</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Start</em>' attribute. * @see #setStart(int) * @see org.obeonetwork.dsl.database.DatabasePackage#getSequence_Start() * @model * @generated */ int getStart(); /** * Sets the value of the '{@link org.obeonetwork.dsl.database.Sequence#getStart <em>Start</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Start</em>' attribute. * @see #getStart() * @generated */ void setStart(int value); /** * Returns the value of the '<em><b>Increment</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Increment</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Increment</em>' attribute. * @see #setIncrement(int) * @see org.obeonetwork.dsl.database.DatabasePackage#getSequence_Increment() * @model * @generated */ int getIncrement(); /** * Sets the value of the '{@link org.obeonetwork.dsl.database.Sequence#getIncrement <em>Increment</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Increment</em>' attribute. * @see #getIncrement() * @generated */ void setIncrement(int value); /** * Returns the value of the '<em><b>Min Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Min Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Min Value</em>' attribute. * @see #setMinValue(int) * @see org.obeonetwork.dsl.database.DatabasePackage#getSequence_MinValue() * @model * @generated */ int getMinValue(); /** * Sets the value of the '{@link org.obeonetwork.dsl.database.Sequence#getMinValue <em>Min Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Min Value</em>' attribute. * @see #getMinValue() * @generated */ void setMinValue(int value); /** * Returns the value of the '<em><b>Max Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Max Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Max Value</em>' attribute. * @see #setMaxValue(int) * @see org.obeonetwork.dsl.database.DatabasePackage#getSequence_MaxValue() * @model * @generated */ int getMaxValue(); /** * Sets the value of the '{@link org.obeonetwork.dsl.database.Sequence#getMaxValue <em>Max Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Max Value</em>' attribute. * @see #getMaxValue() * @generated */ void setMaxValue(int value); } // Sequence