/** * Copyright (c) 2008, 2009 Borland Software Corp. * * 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: * Alexander Shatalin (Borland) - initial API and implementation * * $Id$ */ package org.eclipse.gmf.tests.xpand.migration.testModel; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Default Attribute Container</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.tests.xpand.migration.testModel.DefaultAttributeContainer#isDefault <em>Default</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.tests.xpand.migration.testModel.MigrationTestsPackage#getDefaultAttributeContainer() * @model * @generated */ public interface DefaultAttributeContainer extends EObject { /** * Returns the value of the '<em><b>Default</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Default</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</em>' attribute. * @see #setDefault(boolean) * @see org.eclipse.gmf.tests.xpand.migration.testModel.MigrationTestsPackage#getDefaultAttributeContainer_Default() * @model * @generated */ boolean isDefault(); /** * Sets the value of the '{@link org.eclipse.gmf.tests.xpand.migration.testModel.DefaultAttributeContainer#isDefault <em>Default</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Default</em>' attribute. * @see #isDefault() * @generated */ void setDefault(boolean value); } // DefaultAttributeContainer