org.nasdanika.models.java.Source Maven / Gradle / Ivy
/**
*/
package org.nasdanika.models.java;
import org.eclipse.emf.common.util.EList;
import org.nasdanika.models.coverage.Coverage;
/**
*
* A representation of the model object 'Source'.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.models.java.Source#getCoverage Coverage}
* - {@link org.nasdanika.models.java.Source#getReferences References}
* - {@link org.nasdanika.models.java.Source#getAnnotations Annotations}
* - {@link org.nasdanika.models.java.Source#getComment Comment}
*
*
* @see org.nasdanika.models.java.JavaPackage#getSource()
* @model
* @generated
*/
public interface Source extends org.nasdanika.models.source.Source {
/**
* Returns the value of the 'Coverage' reference list.
* The list contents are of type {@link org.nasdanika.models.coverage.Coverage}.
*
*
* @return the value of the 'Coverage' reference list.
* @see org.nasdanika.models.java.JavaPackage#getSource_Coverage()
* @model
* @generated
*/
EList getCoverage();
/**
* Returns the value of the 'References' containment reference list.
* The list contents are of type {@link org.nasdanika.models.java.Reference}.
*
*
* @return the value of the 'References' containment reference list.
* @see org.nasdanika.models.java.JavaPackage#getSource_References()
* @model containment="true"
* @generated
*/
EList getReferences();
/**
* Returns the value of the 'Annotations' containment reference list.
* The list contents are of type {@link org.nasdanika.models.java.Annotation}.
*
*
* @return the value of the 'Annotations' containment reference list.
* @see org.nasdanika.models.java.JavaPackage#getSource_Annotations()
* @model containment="true"
* @generated
*/
EList getAnnotations();
/**
* Returns the value of the 'Comment' containment reference.
*
*
* @return the value of the 'Comment' containment reference.
* @see #setComment(Comment)
* @see org.nasdanika.models.java.JavaPackage#getSource_Comment()
* @model containment="true"
* @generated
*/
Comment getComment();
/**
* Sets the value of the '{@link org.nasdanika.models.java.Source#getComment Comment}' containment reference.
*
*
* @param value the new value of the 'Comment' containment reference.
* @see #getComment()
* @generated
*/
void setComment(Comment value);
} // Source