blob: 4d9dd995b806946cf614a36ca729eb40f20394eb [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>Submit Info</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.egerrit.internal.model.SubmitInfo#getStatus <em>Status</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.SubmitInfo#getOn_behalf_of <em>On behalf of</em>}</li>
* </ul>
*
* @see org.eclipse.egerrit.internal.model.ModelPackage#getSubmitInfo()
* @model
* @generated
*/
public interface SubmitInfo extends EObject {
/**
* Returns the value of the '<em><b>Status</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Status</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Status</em>' attribute.
* @see #setStatus(String)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getSubmitInfo_Status()
* @model
* @generated
*/
String getStatus();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.SubmitInfo#getStatus <em>Status</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Status</em>' attribute.
* @see #getStatus()
* @generated
*/
void setStatus(String value);
/**
* Returns the value of the '<em><b>On behalf of</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>On behalf of</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>On behalf of</em>' attribute.
* @see #setOn_behalf_of(String)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getSubmitInfo_On_behalf_of()
* @model
* @generated
*/
String getOn_behalf_of();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.SubmitInfo#getOn_behalf_of <em>On behalf of</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>On behalf of</em>' attribute.
* @see #getOn_behalf_of()
* @generated
*/
void setOn_behalf_of(String value);
} // SubmitInfo