/** */ package org.eclipse.viatra.solver.language.solverLanguage; /** * * A representation of the model object 'Uri Import'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getUriImport() * @model * @generated */ public interface UriImport extends Import { /** * Returns the value of the 'Uri' attribute. * * * @return the value of the 'Uri' attribute. * @see #setUri(String) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getUriImport_Uri() * @model * @generated */ String getUri(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.UriImport#getUri Uri}' attribute. * * * @param value the new value of the 'Uri' attribute. * @see #getUri() * @generated */ void setUri(String value); } // UriImport