/** * ***************************************************************************** * Copyright (c) 2014 BestSolution.at and others. * 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: * Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation * ******************************************************************************* */ package at.bestsolution.persistence.tasktracker; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Base Object</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link at.bestsolution.persistence.tasktracker.BaseObject#getSid <em>Sid</em>}</li> * </ul> * </p> * * @see at.bestsolution.persistence.tasktracker.TasktrackerPackage#getBaseObject() * @model abstract="true" * @generated */ public interface BaseObject extends EObject { /** * Returns the value of the '<em><b>Sid</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Sid</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Sid</em>' attribute. * @see #setSid(long) * @see at.bestsolution.persistence.tasktracker.TasktrackerPackage#getBaseObject_Sid() * @model * @generated */ long getSid(); /** * Sets the value of the '{@link at.bestsolution.persistence.tasktracker.BaseObject#getSid <em>Sid</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Sid</em>' attribute. * @see #getSid() * @generated */ void setSid(long value); } // BaseObject