/** */ package hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Information Link'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalArchitecturePackage#getInformationLink() * @model * @generated */ public interface InformationLink extends EObject { /** * Returns the value of the 'From' container reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalOutput#getOutgoingLinks Outgoing Links}'. * *

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

* * @return the value of the 'From' container reference. * @see #setFrom(FunctionalOutput) * @see hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalArchitecturePackage#getInformationLink_From() * @see hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalOutput#getOutgoingLinks * @model opposite="outgoingLinks" transient="false" * @generated */ FunctionalOutput getFrom(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.InformationLink#getFrom From}' container reference. * * * @param value the new value of the 'From' container reference. * @see #getFrom() * @generated */ void setFrom(FunctionalOutput value); /** * Returns the value of the 'To' reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalInput#getIncomingLinks Incoming Links}'. * *

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

* * @return the value of the 'To' reference. * @see #setTo(FunctionalInput) * @see hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalArchitecturePackage#getInformationLink_To() * @see hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.FunctionalInput#getIncomingLinks * @model opposite="IncomingLinks" required="true" * @generated */ FunctionalInput getTo(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasomer.domains.transima.fam.FunctionalArchitecture.InformationLink#getTo To}' reference. * * * @param value the new value of the 'To' reference. * @see #getTo() * @generated */ void setTo(FunctionalInput value); } // InformationLink