blob: 1127e262b58a6f75bb4138a1d7f4d8d6869dc71c [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Dynamic Runtime Environment"
*
* Copyright 2009, 2012 Oliver Frank 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:
* Oliver Frank - Initial API and implementation
* Stephan Herrmann - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otredyn.runtime;
/**
* Default implementation of {@link IClassIdentifierProvider}, that just
* returns the class name as identifier. This implementation could be used
* in a standard java context.
* @author Oliver Frank
*/
public class DefaultClassIdentifierProvider implements IClassIdentifierProvider {
public String getBoundClassIdentifier(Class<?> teem, String boundClassname) {
return boundClassname;
}
public String getSuperclassIdentifier(String classId, String superclassName) {
return superclassName;
}
public String getClassIdentifier(Class<?> clazz) {
return clazz.getName().replace('.', '/');
}
}