blob: fbaf05f194ba9c8d8f104c21ab82e638f6f71ff3 [file] [log] [blame]
/**
*/
package traceability;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Log Entry</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link traceability.LogEntry#getParticipants <em>Participants</em>}</li>
* <li>{@link traceability.LogEntry#getMessage <em>Message</em>}</li>
* <li>{@link traceability.LogEntry#getSeverity <em>Severity</em>}</li>
* <li>{@link traceability.LogEntry#getMessageType <em>Message Type</em>}</li>
* <li>{@link traceability.LogEntry#getComment <em>Comment</em>}</li>
* <li>{@link traceability.LogEntry#getComments <em>Comments</em>}</li>
* </ul>
* </p>
*
* @see traceability.TraceabilityPackage#getLogEntry()
* @model
* @generated
*/
public interface LogEntry extends EObject {
/**
* Returns the value of the '<em><b>Participants</b></em>' reference list.
* The list contents are of type {@link org.eclipse.emf.ecore.EObject}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Participants</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Participants</em>' reference list.
* @see traceability.TraceabilityPackage#getLogEntry_Participants()
* @model
* @generated
*/
EList<EObject> getParticipants();
/**
* 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 traceability.TraceabilityPackage#getLogEntry_Message()
* @model
* @generated
*/
String getMessage();
/**
* Sets the value of the '{@link traceability.LogEntry#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>Severity</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Severity</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Severity</em>' attribute.
* @see #setSeverity(int)
* @see traceability.TraceabilityPackage#getLogEntry_Severity()
* @model
* @generated
*/
int getSeverity();
/**
* Sets the value of the '{@link traceability.LogEntry#getSeverity <em>Severity</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Severity</em>' attribute.
* @see #getSeverity()
* @generated
*/
void setSeverity(int value);
/**
* Returns the value of the '<em><b>Message Type</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Message Type</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 Type</em>' attribute.
* @see #setMessageType(int)
* @see traceability.TraceabilityPackage#getLogEntry_MessageType()
* @model
* @generated
*/
int getMessageType();
/**
* Sets the value of the '{@link traceability.LogEntry#getMessageType <em>Message Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Message Type</em>' attribute.
* @see #getMessageType()
* @generated
*/
void setMessageType(int value);
/**
* Returns the value of the '<em><b>Comment</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Comment</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Comment</em>' attribute.
* @see #setComment(String)
* @see traceability.TraceabilityPackage#getLogEntry_Comment()
* @model
* @generated
*/
String getComment();
/**
* Sets the value of the '{@link traceability.LogEntry#getComment <em>Comment</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Comment</em>' attribute.
* @see #getComment()
* @generated
*/
void setComment(String value);
/**
* Returns the value of the '<em><b>Comments</b></em>' containment reference list.
* The list contents are of type {@link traceability.TraceComment}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Comments</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Comments</em>' containment reference list.
* @see traceability.TraceabilityPackage#getLogEntry_Comments()
* @model containment="true"
* @generated
*/
EList<TraceComment> getComments();
} // LogEntry