blob: 3f45285f8a3d740bb12e5ebd731deaff74e727b7 [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.elementselection;
import org.eclipse.gmf.runtime.common.core.service.IOperation;
/**
* The matching objects operation used by the element selection service.
*
* @author Anthony Hunter
*/
public interface IMatchingObjectsOperation
extends IOperation {
/**
* Retreive the element selection input for this operation.
*
* @return the element selection input.
*/
public IElementSelectionInput getElementSelectionInput();
}