blob: 9116dc3e0a92d656a172af17c8346144029ed940 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 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.common.ui.services.icon;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.gmf.runtime.common.core.service.IOperation;
/**
* The operation used by the {@link IconService}.
*
* @author ldamus
*/
public interface IIconOperation extends IOperation {
/**
* Gets the adaptable hint.
*
* @return the hint
*/
public abstract IAdaptable getHint();
}