blob: fffe44d332f27e8ba703b668c320615bca3b70f2 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2009, 2019 Mia-Software 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:
*
* Fabien Giquel (Mia-Software) - initial API and implementation
* Gregoire DUPE (Mia-Software) - initial API and implementation
* *******************************************************************************
*/
package org.eclipse.modisco.java;
import org.eclipse.emf.common.util.EList;
import org.eclipse.modisco.java.AnonymousClassDeclaration;
import org.eclipse.modisco.java.BodyDeclaration;
import org.eclipse.modisco.java.Expression;
import org.eclipse.modisco.java.VariableDeclaration;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Enum Constant Declaration</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.java.EnumConstantDeclaration#getAnonymousClassDeclaration <em>Anonymous Class Declaration</em>}</li>
* <li>{@link org.eclipse.modisco.java.EnumConstantDeclaration#getArguments <em>Arguments</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.java.nousages.cdo.meta.JavaPackage#getEnumConstantDeclaration()
* @model
* @generated
*/
public interface EnumConstantDeclaration extends BodyDeclaration, VariableDeclaration {
/**
* Returns the value of the '<em><b>Anonymous Class Declaration</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Anonymous Class Declaration</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Anonymous Class Declaration</em>' containment reference.
* @see #setAnonymousClassDeclaration(AnonymousClassDeclaration)
* @see org.eclipse.modisco.java.nousages.cdo.meta.JavaPackage#getEnumConstantDeclaration_AnonymousClassDeclaration()
* @model containment="true" ordered="false"
* @generated
*/
AnonymousClassDeclaration getAnonymousClassDeclaration();
/**
* Sets the value of the '{@link org.eclipse.modisco.java.EnumConstantDeclaration#getAnonymousClassDeclaration <em>Anonymous Class Declaration</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Anonymous Class Declaration</em>' containment reference.
* @see #getAnonymousClassDeclaration()
* @generated
*/
void setAnonymousClassDeclaration(AnonymousClassDeclaration value);
/**
* Returns the value of the '<em><b>Arguments</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.modisco.java.Expression}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Arguments</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Arguments</em>' containment reference list.
* @see org.eclipse.modisco.java.nousages.cdo.meta.JavaPackage#getEnumConstantDeclaration_Arguments()
* @model containment="true"
* @generated
*/
EList<Expression> getArguments();
} // EnumConstantDeclaration