blob: 89a7d2bc3ebd53f4bf7e709dae90e5c30646bc24 [file] [log] [blame]
/**
* Copyright (c) 2011-2016 EclipseSource Muenchen GmbH and others.
*
* 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:
* Lucas Koehler - initial API and implementation
*/
package org.eclipse.emfforms.core.services.databinding.testmodel.test.model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>DExtended</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.DExtended#getA <em>A</em>}</li>
* </ul>
*
* @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getDExtended()
* @model
* @generated
*/
public interface DExtended extends D {
/**
* Returns the value of the '<em><b>A</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>A</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>A</em>' reference.
* @see #setA(A)
* @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage#getDExtended_A()
* @model
* @generated
*/
A getA();
/**
* Sets the value of the '{@link org.eclipse.emfforms.core.services.databinding.testmodel.test.model.DExtended#getA
* <em>A</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value the new value of the '<em>A</em>' reference.
* @see #getA()
* @generated
*/
void setA(A value);
} // DExtended