blob: e87a205fe4c24bcbb625aa768070fb19f81efd06 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2011 SAP AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* SAP AG - initial API and implementation
******************************************************************************
* $Id: AbapType.java,v 1.2 2011/03/05 21:37:36 auhl Exp $
*/
package abapmapping.abapdictionary;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Abap Type</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link abapmapping.abapdictionary.AbapType#getName <em>Name</em>}</li>
* <li>{@link abapmapping.abapdictionary.AbapType#getXsdRepresentation <em>Xsd Representation</em>}</li>
* </ul>
* </p>
*
* @see abapmapping.abapdictionary.AbapdictionaryPackage#getAbapType()
* @model
* @generated
*/
public interface AbapType extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Name</em>' attribute.
* @see #setName(String)
* @see abapmapping.abapdictionary.AbapdictionaryPackage#getAbapType_Name()
* @model unique="false" required="true" ordered="false"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link abapmapping.abapdictionary.AbapType#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Xsd Representation</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Xsd Representation</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Xsd Representation</em>' reference.
* @see #setXsdRepresentation(XsdType)
* @see abapmapping.abapdictionary.AbapdictionaryPackage#getAbapType_XsdRepresentation()
* @model required="true"
* @generated
*/
XsdType getXsdRepresentation();
/**
* Sets the value of the '{@link abapmapping.abapdictionary.AbapType#getXsdRepresentation <em>Xsd Representation</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Xsd Representation</em>' reference.
* @see #getXsdRepresentation()
* @generated
*/
void setXsdRepresentation(XsdType value);
} // AbapType