blob: 7714be2281304ba4e8814fd4eb2841da1c40e144 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jem.internal.java.adapters;
/*
* $RCSfile: IJavaReflectionKeyExtension.java,v $
* $Revision: 1.3 $ $Date: 2005/08/24 20:20:25 $
*/
/**
* Interface for JavaReflectionKeyExtensions.
* They are registered with the JavaXMIFactoryImpl.
*
* @version 1.0
* @author R. L. Kulp
*/
public interface IJavaReflectionKeyExtension {
/**
* Return object for the given id. Return null if this extension doesn't
* process this type of id.
*/
public Object getObject(String id, JavaReflectionKey reflectionKey);
}