/** * <copyright> * </copyright> * * $Id: Log.java,v 1.3 2007/07/30 21:12:10 delmyers Exp $ */ package net.sourceforge.tagsea.logging; import java.util.Date; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Log</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sourceforge.tagsea.logging.Log#getUid <em>Uid</em>}</li> * <li>{@link net.sourceforge.tagsea.logging.Log#getDate <em>Date</em>}</li> * <li>{@link net.sourceforge.tagsea.logging.Log#getUname <em>Uname</em>}</li> * <li>{@link net.sourceforge.tagsea.logging.Log#getCountry <em>Country</em>}</li> * <li>{@link net.sourceforge.tagsea.logging.Log#getLanguage <em>Language</em>}</li> * <li>{@link net.sourceforge.tagsea.logging.Log#getSession <em>Session</em>}</li> * </ul> * </p> * * @see net.sourceforge.tagsea.logging.LoggingPackage#getLog() * @model abstract="true" * @generated */ public interface Log extends EObject { /** * Returns the value of the '<em><b>Uid</b></em>' attribute. * The default value is <code>"0"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Uid</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Uid</em>' attribute. * @see #setUid(int) * @see net.sourceforge.tagsea.logging.LoggingPackage#getLog_Uid() * @model default="0" required="true" * @generated */ int getUid(); /** * Sets the value of the '{@link net.sourceforge.tagsea.logging.Log#getUid <em>Uid</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Uid</em>' attribute. * @see #getUid() * @generated */ void setUid(int value); /** * Returns the value of the '<em><b>Date</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Date</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Date</em>' attribute. * @see #setDate(Date) * @see net.sourceforge.tagsea.logging.LoggingPackage#getLog_Date() * @model required="true" * @generated */ Date getDate(); /** * Sets the value of the '{@link net.sourceforge.tagsea.logging.Log#getDate <em>Date</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Date</em>' attribute. * @see #getDate() * @generated */ void setDate(Date value); /** * Returns the value of the '<em><b>Uname</b></em>' attribute. * The default value is <code>"anonymous"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Uname</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Uname</em>' attribute. * @see #setUname(String) * @see net.sourceforge.tagsea.logging.LoggingPackage#getLog_Uname() * @model default="anonymous" required="true" * @generated */ String getUname(); /** * Sets the value of the '{@link net.sourceforge.tagsea.logging.Log#getUname <em>Uname</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Uname</em>' attribute. * @see #getUname() * @generated */ void setUname(String value); /** * Returns the value of the '<em><b>Country</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Country</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Country</em>' attribute. * @see #setCountry(String) * @see net.sourceforge.tagsea.logging.LoggingPackage#getLog_Country() * @model required="true" * @generated */ String getCountry(); /** * Sets the value of the '{@link net.sourceforge.tagsea.logging.Log#getCountry <em>Country</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Country</em>' attribute. * @see #getCountry() * @generated */ void setCountry(String value); /** * Returns the value of the '<em><b>Language</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Language</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Language</em>' attribute. * @see #setLanguage(String) * @see net.sourceforge.tagsea.logging.LoggingPackage#getLog_Language() * @model required="true" * @generated */ String getLanguage(); /** * Sets the value of the '{@link net.sourceforge.tagsea.logging.Log#getLanguage <em>Language</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Language</em>' attribute. * @see #getLanguage() * @generated */ void setLanguage(String value); /** * Returns the value of the '<em><b>Session</b></em>' attribute. * The default value is <code>"0"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Session</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Session</em>' attribute. * @see #setSession(int) * @see net.sourceforge.tagsea.logging.LoggingPackage#getLog_Session() * @model default="0" required="true" * @generated */ int getSession(); /** * Sets the value of the '{@link net.sourceforge.tagsea.logging.Log#getSession <em>Session</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Session</em>' attribute. * @see #getSession() * @generated */ void setSession(int value); } // Log