blob: 9e80b9316b8307807636ea000bf8a92364482cfc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Willink Transformations and others.
* 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
/**
*/
package example2.classes;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import example2.classes.util.Visitable;
import example2.classes.util.Visitor;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Element</b></em>'.
* <!-- end-user-doc -->
*
*
* @see example2.classes.ClassesPackage#getElement()
* @model abstract="true" superTypes="example2.classes.Visitable"
* @generated
*/
public interface Element extends EObject, Visitable {
/**
* 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 @Nullable <R> R accept(@NonNull Visitor<R> visitor);
} // Element