blob: 1915ad53e61b3a3f5107913edc764b9459fd8cb3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* 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:
******************************************************************************/
package org.eclipse.emf.emfstore.internal.server.model.versioning;
import java.util.Date;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.emfstore.internal.common.api.APIDelegate;
import org.eclipse.emf.emfstore.server.model.ESLogMessage;
/**
* <!-- begin-user-doc --> A representation of the model object ' <em><b>Log Message</b></em>'.
*
* @extends APIDelegate<ESLogMessage>
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.emf.emfstore.internal.server.model.versioning.LogMessage#getAuthor <em>Author</em>}
* </li>
* <li>{@link org.eclipse.emf.emfstore.internal.server.model.versioning.LogMessage#getMessage <em>Message</em>}
* </li>
* <li>{@link org.eclipse.emf.emfstore.internal.server.model.versioning.LogMessage#getDate <em>Date</em>}</li>
* <li>{@link org.eclipse.emf.emfstore.internal.server.model.versioning.LogMessage#getClientDate <em>Client
* Date</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.emfstore.internal.server.model.versioning.VersioningPackage#getLogMessage()
* @model
* @generated
*/
public interface LogMessage extends EObject, APIDelegate<ESLogMessage> {
/**
* Returns the value of the '<em><b>Message</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Message</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Message</em>' attribute.
* @see #setMessage(String)
* @see org.eclipse.emf.emfstore.internal.server.model.versioning.VersioningPackage#getLogMessage_Message()
* @model required="true"
* @generated
*/
String getMessage();
/**
* Sets the value of the ' {@link org.eclipse.emf.emfstore.internal.server.model.versioning.LogMessage#getMessage
* <em>Message</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc
* -->
*
* @param value
* the new value of the '<em>Message</em>' attribute.
* @see #getMessage()
* @generated
*/
void setMessage(String value);
/**
* Returns the value of the '<em><b>Author</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Author</em>' reference isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Author</em>' attribute.
* @see #setAuthor(String)
* @see org.eclipse.emf.emfstore.internal.server.model.versioning.VersioningPackage#getLogMessage_Author()
* @model required="true"
* @generated
*/
String getAuthor();
/**
* Sets the value of the ' {@link org.eclipse.emf.emfstore.internal.server.model.versioning.LogMessage#getAuthor
* <em>Author</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc
* -->
*
* @param value
* the new value of the '<em>Author</em>' attribute.
* @see #getAuthor()
* @generated
*/
void setAuthor(String 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 org.eclipse.emf.emfstore.internal.server.model.versioning.VersioningPackage#getLogMessage_Date()
* @model required="true"
* @generated
*/
Date getDate();
/**
* Sets the value of the '{@link org.eclipse.emf.emfstore.internal.server.model.versioning.LogMessage#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>Client Date</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Client 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>Client Date</em>' attribute.
* @see #setClientDate(Date)
* @see org.eclipse.emf.emfstore.internal.server.model.versioning.VersioningPackage#getLogMessage_ClientDate()
* @model
* @generated
*/
Date getClientDate();
/**
* Sets the value of the '{@link org.eclipse.emf.emfstore.internal.server.model.versioning.LogMessage#getClientDate
* <em>Client Date</em>}' attribute.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value the new value of the '<em>Client Date</em>' attribute.
* @see #getClientDate()
* @generated
*/
void setClientDate(Date value);
} // LogMessage