/** */ package de.ugoe.cs.swe.bnftools.ebnf; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Etsi Bnf'. * * *

* The following features are supported: *

*

* * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getEtsiBnf() * @model * @generated */ public interface EtsiBnf extends EObject { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getEtsiBnf_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.EtsiBnf#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Type' attribute. * *

* If the meaning of the 'Type' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Type' attribute. * @see #setType(String) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getEtsiBnf_Type() * @model * @generated */ String getType(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.EtsiBnf#getType Type}' attribute. * * * @param value the new value of the 'Type' attribute. * @see #getType() * @generated */ void setType(String value); /** * Returns the value of the 'Import Section' containment reference. * *

* If the meaning of the 'Import Section' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Import Section' containment reference. * @see #setImportSection(ImportSection) * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getEtsiBnf_ImportSection() * @model containment="true" * @generated */ ImportSection getImportSection(); /** * Sets the value of the '{@link de.ugoe.cs.swe.bnftools.ebnf.EtsiBnf#getImportSection Import Section}' containment reference. * * * @param value the new value of the 'Import Section' containment reference. * @see #getImportSection() * @generated */ void setImportSection(ImportSection value); /** * Returns the value of the 'Bnf Entry' containment reference list. * The list contents are of type {@link de.ugoe.cs.swe.bnftools.ebnf.BnfEntry}. * *

* If the meaning of the 'Bnf Entry' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Bnf Entry' containment reference list. * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getEtsiBnf_BnfEntry() * @model containment="true" * @generated */ EList getBnfEntry(); /** * Returns the value of the 'Delta Entry' containment reference list. * The list contents are of type {@link de.ugoe.cs.swe.bnftools.ebnf.DeltaEntry}. * *

* If the meaning of the 'Delta Entry' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Delta Entry' containment reference list. * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getEtsiBnf_DeltaEntry() * @model containment="true" * @generated */ EList getDeltaEntry(); /** * Returns the value of the 'Merge Entry' containment reference list. * The list contents are of type {@link de.ugoe.cs.swe.bnftools.ebnf.MergeEntry}. * *

* If the meaning of the 'Merge Entry' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Merge Entry' containment reference list. * @see de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage#getEtsiBnf_MergeEntry() * @model containment="true" * @generated */ EList getMergeEntry(); } // EtsiBnf