blob: 3f9dbb68d621cfd1bf48fabf611df3cf1d74546e [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006, 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.gmf.runtime.draw2d.ui.internal.mapmode;
import org.eclipse.gmf.runtime.draw2d.ui.mapmode.IMapMode;
/**
* An interface to be implemented by classes that wrap an IMapMode
* in order to allow clients a read access to the underlying IMapMode
*
* @author Yasser Lulu
*
*/
public interface IMapModeHolder
extends IMapMode {
/**
* An accessor method for the wrapped IMapMode
*
* @return IMapMode the held IMapMode
*/
IMapMode getMapMode();
}