blob: ece69e902a4306ba6a2f54aabec1e61bd7713503 [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>Account Info</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.egerrit.internal.model.AccountInfo#get_account_id <em>account id</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.AccountInfo#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.AccountInfo#getEmail <em>Email</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.AccountInfo#getUsername <em>Username</em>}</li>
* </ul>
*
* @see org.eclipse.egerrit.internal.model.ModelPackage#getAccountInfo()
* @model
* @generated
*/
public interface AccountInfo extends EObject {
/**
* Returns the value of the '<em><b>account id</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>account id</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>account id</em>' attribute.
* @see #set_account_id(int)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getAccountInfo__account_id()
* @model
* @generated
*/
int get_account_id();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.AccountInfo#get_account_id <em>account id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>account id</em>' attribute.
* @see #get_account_id()
* @generated
*/
void set_account_id(int value);
/**
* 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#getAccountInfo_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.AccountInfo#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#getAccountInfo_Email()
* @model
* @generated
*/
String getEmail();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.AccountInfo#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>Username</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Username</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Username</em>' attribute.
* @see #setUsername(String)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getAccountInfo_Username()
* @model
* @generated
*/
String getUsername();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.AccountInfo#getUsername <em>Username</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Username</em>' attribute.
* @see #getUsername()
* @generated
*/
void setUsername(String value);
} // AccountInfo