blob: c9bb049cdd16df8defc52e67535fb527e442d42a [file] [log] [blame]
/*******************************************************************************
* Copyright 2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* All rights reserved. This program and the accompanying materials
* are made available under 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.server.model.versioning;
import java.util.Date;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Log Message</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.emf.emfstore.server.model.versioning.LogMessage#getAuthor
* <em>Author</em>}</li>
* <li>
* {@link org.eclipse.emf.emfstore.server.model.versioning.LogMessage#getMessage
* <em>Message</em>}</li>
* <li>
* {@link org.eclipse.emf.emfstore.server.model.versioning.LogMessage#getDate
* <em>Date</em>}</li>
* <li>
* {@link org.eclipse.emf.emfstore.server.model.versioning.LogMessage#getClientDate
* <em>Client Date</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.emfstore.server.model.versioning.VersioningPackage#getLogMessage()
* @model
* @generated
*/
public interface LogMessage extends EObject {
/**
* 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.server.model.versioning.VersioningPackage#getLogMessage_Message()
* @model required="true"
* @generated
*/
String getMessage();
/**
* Sets the value of the '
* {@link org.eclipse.emf.emfstore.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.server.model.versioning.VersioningPackage#getLogMessage_Author()
* @model required="true"
* @generated
*/
String getAuthor();
/**
* Sets the value of the '
* {@link org.eclipse.emf.emfstore.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.server.model.versioning.VersioningPackage#getLogMessage_Date()
* @model required="true"
* @generated
*/
Date getDate();
/**
* Sets the value of the '
* {@link org.eclipse.emf.emfstore.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.server.model.versioning.VersioningPackage#getLogMessage_ClientDate()
* @model
* @generated
*/
Date getClientDate();
/**
* Sets the value of the '
* {@link org.eclipse.emf.emfstore.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