/** * Copyright (c) 2011-2012 Eclipse contributors 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 */ package org.eclipse.emf.ecore.xcore; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>XAttribute</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.ecore.xcore.XAttribute#getDefaultValueLiteral <em>Default Value Literal</em>}</li> * <li>{@link org.eclipse.emf.ecore.xcore.XAttribute#isID <em>ID</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.ecore.xcore.XcorePackage#getXAttribute() * @model * @generated */ public interface XAttribute extends XStructuralFeature { /** * Returns the value of the '<em><b>Default Value Literal</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Default Value Literal</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Default Value Literal</em>' attribute. * @see #setDefaultValueLiteral(String) * @see org.eclipse.emf.ecore.xcore.XcorePackage#getXAttribute_DefaultValueLiteral() * @model * @generated */ String getDefaultValueLiteral(); /** * Sets the value of the '{@link org.eclipse.emf.ecore.xcore.XAttribute#getDefaultValueLiteral <em>Default Value Literal</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Default Value Literal</em>' attribute. * @see #getDefaultValueLiteral() * @generated */ void setDefaultValueLiteral(String value); /** * Returns the value of the '<em><b>ID</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>ID</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>ID</em>' attribute. * @see #setID(boolean) * @see org.eclipse.emf.ecore.xcore.XcorePackage#getXAttribute_ID() * @model * @generated */ boolean isID(); /** * Sets the value of the '{@link org.eclipse.emf.ecore.xcore.XAttribute#isID <em>ID</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>ID</em>' attribute. * @see #isID() * @generated */ void setID(boolean value); } // XAttribute