/***************************************************************************** * Copyright (c) 2011 Atos * * * 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: * Mathieu Velten (Atos) mathieu.velten@atos.net - Initial API and implementation * Philippe Roland (Atos) philippe.roland@atos.net - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.views.modelexplorer; /** * This interface is used to refer any object wishing to transparently * offer access to another child object * * @author proland * */ public interface IReferencable { public Object getElementBehind(); }