blob: 8127e4a0a1441a9a85ee4e059142c355ea0f8b5c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 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.debug.internal.ui.viewers.provisional;
/**
* A model proxy factory creates model proxies for elements based on
* specific presentation contexts. A model proxy factory is provided for
* a model element by registering a model proxy factory adapter for
* an element.
* <p>
* Clients may implement this interface.
* </p>
* @see IModelProxy
* @see IModelDelta
* @since 3.2
*/
public interface IModelProxyFactoryAdapter {
/**
* Creates and returns a model proxy for the given element in the specified
* context or <code>null</code> if none.
*
* @param element model element to create a model proxy for
* @param context presentation context
* @return model proxy or <code>null</code>
*/
public IModelProxy createModelProxy(Object element, IPresentationContext context);
}