blob: 0132f36e0348356ddbd7306560ae8e34745de5ee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Martin Kloesch 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:
* Martin Kloesch - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.debugging;
import org.eclipse.core.resources.IResource;
import org.eclipse.ease.Script;
/**
* Simple interface for mapping between data types in different debugger realms.
*
* The eclipse framework uses {@link IResource} objects to identify files while EASE relies on {@link Script} objects.
*/
public interface IScriptRegistry {
/**
* Add a new {@link Script} to the registry and store its mapping.
*
* @param script
* Script to be stored in registry.
*/
public void put(Script script);
/**
* Return the {@link Script} identified by this {@link IResource}.
*
* @param resource
* {@link IResource} to get {@link Script} for.
* @return {@link Script} identified by {@link IResource} or {@code null} if no mapping found.
*/
public Script getScript(IResource resource);
/**
* Get the {@link IResource} identified by this {@link Script}.
*
* @param resource
* {@link Script} to get {@link IResource} for.
* @return {@link IResource} identified by {@link Script} or {@code null} if no mapping found.
*/
public IResource getResource(Script script);
}