blob: f46c50a4c504ffb44958d460a06f20fa6cdc96b2 [file] [log] [blame]
/**
* Copyright (c) 2015-2017 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.common.util.EMap;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Fetch Info</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.egerrit.internal.model.FetchInfo#getUrl <em>Url</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.FetchInfo#getRef <em>Ref</em>}</li>
* <li>{@link org.eclipse.egerrit.internal.model.FetchInfo#getCommands <em>Commands</em>}</li>
* </ul>
*
* @see org.eclipse.egerrit.internal.model.ModelPackage#getFetchInfo()
* @model
* @generated
*/
public interface FetchInfo extends EObject {
/**
* Returns the value of the '<em><b>Url</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Url</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Url</em>' attribute.
* @see #setUrl(String)
* @see org.eclipse.egerrit.internal.model.ModelPackage#getFetchInfo_Url()
* @model
* @generated
*/
String getUrl();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.FetchInfo#getUrl <em>Url</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Url</em>' attribute.
* @see #getUrl()
* @generated
*/
void setUrl(String value);
/**
* 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#getFetchInfo_Ref()
* @model
* @generated
*/
String getRef();
/**
* Sets the value of the '{@link org.eclipse.egerrit.internal.model.FetchInfo#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>Commands</b></em>' map.
* The key is of type {@link java.lang.String},
* and the value is of type {@link java.lang.String},
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Commands</em>' map isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Commands</em>' map.
* @see org.eclipse.egerrit.internal.model.ModelPackage#getFetchInfo_Commands()
* @model mapType="org.eclipse.egerrit.internal.model.StringToString<org.eclipse.emf.ecore.EString, org.eclipse.emf.ecore.EString>"
* @generated
*/
EMap<String, String> getCommands();
} // FetchInfo