blob: 8091d54cd9f888d95b7d23c1eeb6e2ad7fc1d32d [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*
*/
package org.eclipse.osbp.xtext.oxtype.oxtype;
import org.eclipse.xtext.xtype.XImportDeclaration;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>OX Import Declaration</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.oxtype.oxtype.OXImportDeclaration#isFqnImport <em>Fqn Import</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.oxtype.oxtype.OXImportDeclaration#getImportedFullyQualifiedName <em>Imported Fully Qualified Name</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.oxtype.oxtype.OXtypePackage#getOXImportDeclaration()
* @model
* @generated
*/
public interface OXImportDeclaration extends XImportDeclaration {
/**
* Returns the value of the '<em><b>Fqn Import</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Fqn Import</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Fqn Import</em>' attribute.
* @see #setFqnImport(boolean)
* @see org.eclipse.osbp.xtext.oxtype.oxtype.OXtypePackage#getOXImportDeclaration_FqnImport()
* @model
* @generated
*/
boolean isFqnImport();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.oxtype.oxtype.OXImportDeclaration#isFqnImport <em>Fqn Import</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Fqn Import</em>' attribute.
* @see #isFqnImport()
* @generated
*/
void setFqnImport(boolean value);
/**
* Returns the value of the '<em><b>Imported Fully Qualified Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Imported Fully Qualified Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Imported Fully Qualified Name</em>' attribute.
* @see #setImportedFullyQualifiedName(String)
* @see org.eclipse.osbp.xtext.oxtype.oxtype.OXtypePackage#getOXImportDeclaration_ImportedFullyQualifiedName()
* @model
* @generated
*/
String getImportedFullyQualifiedName();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.oxtype.oxtype.OXImportDeclaration#getImportedFullyQualifiedName <em>Imported Fully Qualified Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Imported Fully Qualified Name</em>' attribute.
* @see #getImportedFullyQualifiedName()
* @generated
*/
void setImportedFullyQualifiedName(String value);
} // OXImportDeclaration