blob: a44c22e82895f40ac593e11f06216cea1ea1ca52 [file] [log] [blame]
/**
* Copyright (c) 2015 Ericsson AB
*
* 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:
* Ericsson AB - Initial API and implementation
*/
package org.eclipse.egerrit.internal.model;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Git Person Info</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.egerrit.internal.model.GitPersonInfo#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.GitPersonInfo#getEmail <em>Email</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.GitPersonInfo#getDate <em>Date</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.GitPersonInfo#getTz <em>Tz</em>}</li>
* </ul>
*
* @see org.eclipse.egerrit.internal.model.ModelPackage#getGitPersonInfo()
* @model
* @generated
*/
public interface GitPersonInfo extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getGitPersonInfo_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.GitPersonInfo#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Email</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Email</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Email</em>' attribute.
* @see #setEmail(String)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getGitPersonInfo_Email()
* @model
* @generated
*/
String getEmail();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.GitPersonInfo#getEmail <em>Email</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Email</em>' attribute.
* @see #getEmail()
* @generated
*/
void setEmail(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(String)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getGitPersonInfo_Date()
* @model
* @generated
*/
String getDate();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.GitPersonInfo#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(String value);
/**
* Returns the value of the '<em><b>Tz</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tz</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Tz</em>' attribute.
* @see #setTz(int)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getGitPersonInfo_Tz()
* @model
* @generated
*/
int getTz();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.GitPersonInfo#getTz <em>Tz</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Tz</em>' attribute.
* @see #getTz()
* @generated
*/
void setTz(int value);
} // GitPersonInfo