blob: 243752fd24cf3efae9cb06376887a18654e87db9 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Dynamic Runtime Environment"
*
* Copyright 2011, 2012 GK Software AG 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
*
* 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 method.
*
* @author stephan
*/
public interface IMethod extends IMember {
String getName();
String getSignature();
}