blob: 5522bf8e51922b67a30cbcb33b0337aacad4e3bc [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Dynamic Runtime Environment"
*
* Copyright 2011, 2014 GK Software AG and others.
*
* 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
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Stephan Herrmann - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otredyn.runtime;
/**
* Interface through which the {@link TeamManager} reaches into the OTREDyn.
* Representation of a member (method or field).
*
* @author stephan
*/
public interface IMember {
int getGlobalId(IBoundClass boundClass);
}