blob: 6237a7ab48c78d9a31af0f55ec948abcbca703f4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
/**
*/
package example5.sderived;
import example5.sbase.Y;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Y2</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link example5.sderived.Y2#getName2 <em>Name2</em>}</li>
* </ul>
*
* @see example5.sderived.SderivedPackage#getY2()
* @model
* @generated
*/
public interface Y2 extends Y {
/**
* Returns the value of the '<em><b>Name2</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name2</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name2</em>' attribute.
* @see #setName2(String)
* @see example5.sderived.SderivedPackage#getY2_Name2()
* @model
* @generated
*/
String getName2();
/**
* Sets the value of the '{@link example5.sderived.Y2#getName2 <em>Name2</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name2</em>' attribute.
* @see #getName2()
* @generated
*/
void setName2(String value);
} // Y2