blob: 9f8cc47f50c9e1bd176d86d6aa8bad552ac6a970 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Nicolas BROS (Mia-Software)
*******************************************************************************/
package org.eclipse.modisco.infra.common.ui.internal.editorInputs;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.ui.IEditorInput;
/**
* For editors that can take a {@link Resource} as an input (supported by the
* MoDisco model browser)
*/
public interface IResourceEditorInput extends IEditorInput {
Resource getResource();
}