/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * 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: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id$ */ package org.oasisopen.names.tc.opendocument.xmlns.text; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Variable Decl Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.VariableDeclType#getName <em>Name</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.VariableDeclType#getValueType <em>Value Type</em>}</li> * </ul> * </p> * * @see org.oasisopen.names.tc.opendocument.xmlns.text.TextPackage#getVariableDeclType() * @model extendedMetaData="name='variable-decl_._type' kind='empty'" * @generated */ public interface VariableDeclType 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 org.oasisopen.names.tc.opendocument.xmlns.text.TextPackage#getVariableDeclType_Name() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.VariableName" required="true" * extendedMetaData="kind='attribute' name='name' namespace='##targetNamespace'" * @generated */ String getName(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.text.VariableDeclType#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>Value Type</b></em>' attribute. * The literals are from the enumeration {@link org.oasisopen.names.tc.opendocument.xmlns.text.ValueType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value Type</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value Type</em>' attribute. * @see org.oasisopen.names.tc.opendocument.xmlns.text.ValueType * @see #isSetValueType() * @see #unsetValueType() * @see #setValueType(ValueType) * @see org.oasisopen.names.tc.opendocument.xmlns.text.TextPackage#getVariableDeclType_ValueType() * @model unsettable="true" required="true" * extendedMetaData="kind='attribute' name='value-type' namespace='urn:oasis:names:tc:opendocument:xmlns:office:1.0'" * @generated */ ValueType getValueType(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.text.VariableDeclType#getValueType <em>Value Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value Type</em>' attribute. * @see org.oasisopen.names.tc.opendocument.xmlns.text.ValueType * @see #isSetValueType() * @see #unsetValueType() * @see #getValueType() * @generated */ void setValueType(ValueType value); /** * Unsets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.text.VariableDeclType#getValueType <em>Value Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetValueType() * @see #getValueType() * @see #setValueType(ValueType) * @generated */ void unsetValueType(); /** * Returns whether the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.text.VariableDeclType#getValueType <em>Value Type</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Value Type</em>' attribute is set. * @see #unsetValueType() * @see #getValueType() * @see #setValueType(ValueType) * @generated */ boolean isSetValueType(); } // VariableDeclType