blob: 87bfa7a6d9e7aa23c2c8b00d56b9562dd8ace105 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 xored software, Inc.
*
* 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:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.codeassist;
import org.eclipse.dltk.annotations.NonNull;
import org.eclipse.dltk.annotations.Nullable;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.dltk.core.ISourceRange;
/**
* @since 3.0
*/
public interface ISelectionRequestor {
void acceptModelElement(IModelElement element);
void acceptElement(@NonNull Object element, @Nullable ISourceRange range);
void acceptForeignElement(Object element);
}