blob: df4ef7f4c89a5fbdabb78a7b7e14ccd7bd192b53 [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>Branch Info</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.egerrit.internal.model.BranchInfo#getRef <em>Ref</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.BranchInfo#getRevision <em>Revision</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.BranchInfo#isCan_delete <em>Can delete</em>}</li>
* </ul>
*
* @see org.eclipse.egerrit.internal.model.ModelPackage#getBranchInfo()
* @model
* @generated
*/
public interface BranchInfo extends EObject {
/**
* Returns the value of the '<em><b>Ref</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ref</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Ref</em>' attribute.
* @see #setRef(String)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getBranchInfo_Ref()
* @model
* @generated
*/
String getRef();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.BranchInfo#getRef <em>Ref</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ref</em>' attribute.
* @see #getRef()
* @generated
*/
void setRef(String value);
/**
* Returns the value of the '<em><b>Revision</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Revision</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Revision</em>' attribute.
* @see #setRevision(String)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getBranchInfo_Revision()
* @model
* @generated
*/
String getRevision();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.BranchInfo#getRevision <em>Revision</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Revision</em>' attribute.
* @see #getRevision()
* @generated
*/
void setRevision(String value);
/**
* Returns the value of the '<em><b>Can delete</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Can delete</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Can delete</em>' attribute.
* @see #setCan_delete(boolean)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getBranchInfo_Can_delete()
* @model
* @generated
*/
boolean isCan_delete();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.BranchInfo#isCan_delete <em>Can delete</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Can delete</em>' attribute.
* @see #isCan_delete()
* @generated
*/
void setCan_delete(boolean value);
} // BranchInfo