blob: 4fca1fb9bc3a60022e557dbbdc07c3b488937c2a [file] [log] [blame]
package org.eclipse.jem.internal.java.adapters;
/*******************************************************************************
* Copyright (c) 2001, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* $RCSfile: IJavaReflectionKeyExtension.java,v $
* $Revision: 1.1 $ $Date: 2003/10/27 17:12:30 $
*/
/**
* 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);
}