blob: ebf408df128ba20947af851a8f235ec5b3012494 [file] [log] [blame]
/**
* Copyright (c) 2010, 2012 Ericsson
*
* 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
*
* Description:
*
* Contributors:
* Alvaro Sanchez-Leon - Initial API and implementation
*
*/
package org.eclipse.mylyn.reviews.r4e.core.model;
import org.eclipse.mylyn.reviews.frame.core.model.Location;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>R4E Content</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EContent#getLocation <em>Location</em>}</li>
* <li>{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EContent#getInfo <em>Info</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mylyn.reviews.r4e.core.model.RModelPackage#getR4EContent()
* @model abstract="true"
* @generated
*/
public interface R4EContent extends Location {
/**
* Returns the value of the '<em><b>Location</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Location</em>' containment reference isn't clear, there really should be more of a
* description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Location</em>' containment reference.
* @see #setLocation(R4EPosition)
* @see org.eclipse.mylyn.reviews.r4e.core.model.RModelPackage#getR4EContent_Location()
* @model containment="true" resolveProxies="true" required="true"
* @generated
*/
R4EPosition getLocation();
/**
* Sets the value of the '{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EContent#getLocation <em>Location</em>}' containment reference.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @param value the new value of the '<em>Location</em>' containment reference.
* @see #getLocation()
* @generated
*/
void setLocation(R4EPosition value);
/**
* Returns the value of the '<em><b>Info</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Info</em>' attribute isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Info</em>' attribute.
* @see #setInfo(String)
* @see org.eclipse.mylyn.reviews.r4e.core.model.RModelPackage#getR4EContent_Info()
* @model
* @generated
*/
String getInfo();
/**
* Sets the value of the '{@link org.eclipse.mylyn.reviews.r4e.core.model.R4EContent#getInfo <em>Info</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @param value the new value of the '<em>Info</em>' attribute.
* @see #getInfo()
* @generated
*/
void setInfo(String value);
} // R4EContent