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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getNamespaceImport() * @model * @generated */ public interface NamespaceImport extends Import { /** * Returns the value of the 'Imported Namespace' attribute. * * * @return the value of the 'Imported Namespace' attribute. * @see #setImportedNamespace(String) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getNamespaceImport_ImportedNamespace() * @model * @generated */ String getImportedNamespace(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.NamespaceImport#getImportedNamespace Imported Namespace}' attribute. * * * @param value the new value of the 'Imported Namespace' attribute. * @see #getImportedNamespace() * @generated */ void setImportedNamespace(String value); } // NamespaceImport