/* license-start * * Copyright (C) 2008 - 2013 Crispico, <http://www.crispico.com/>. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details, at <http://www.gnu.org/licenses/>. * * Contributors: * Crispico - Initial API and implementation * * license-end */ /** * <copyright> * </copyright> * * $Id$ */ package org.flowerplatform.web.entity; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>DB Version</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.flowerplatform.web.entity.DBVersion#getId <em>Id</em>}</li> * <li>{@link org.flowerplatform.web.entity.DBVersion#getDbVersion <em>Db Version</em>}</li> * </ul> * </p> * * @see org.flowerplatform.web.entity.EntityPackage#getDBVersion() * @model * @generated */ public interface DBVersion extends EObject { public static final long SINGLETON_RECORD_ID = 1; /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(long) * @see org.flowerplatform.web.entity.EntityPackage#getDBVersion_Id() * @model id="true" * @generated */ long getId(); /** * Sets the value of the '{@link org.flowerplatform.web.entity.DBVersion#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(long value); /** * Returns the value of the '<em><b>Db Version</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Db Version</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Db Version</em>' attribute. * @see #setDbVersion(long) * @see org.flowerplatform.web.entity.EntityPackage#getDBVersion_DbVersion() * @model * @generated */ long getDbVersion(); /** * Sets the value of the '{@link org.flowerplatform.web.entity.DBVersion#getDbVersion <em>Db Version</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Db Version</em>' attribute. * @see #getDbVersion() * @generated */ void setDbVersion(long value); } // DBVersion