blob: d3c6c08708f8d6f046d3ce2c7442cf0e75d82c83 [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 org.eclipse.qvtd.umlx;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.qvtd.umlx.util.UMLXVisitor;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.umlx.UMLXElement#getComments <em>Comments</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.umlx.UMLXPackage#getUMLXElement()
* @generated
*/
public interface UMLXElement extends EObject {
/**
* Returns the value of the '<em><b>Comments</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Comments</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Comments</em>' attribute list.
* @see org.eclipse.qvtd.umlx.UMLXPackage#getUMLXElement_Comments()
* @generated
*/
EList<String> getComments();
/**
* Accept a visit from a visitor and return the result of a call to the derived type-specific visitXXX in the visitor.
* @generated
*/
// Generated from org.eclipse.ocl.examples.build/templates/model/Class/insert.javajetinc
public <R> R accept(@NonNull UMLXVisitor<R> visitor);
} // Element