blob: fac5c278d665a3dcb4f8e9e0402fe5d9fe4cc2dc [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006, 2015 THALES GLOBAL SERVICES.
* 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:
* Thales - initial API and implementation
******************************************************************************/
package org.eclipse.amalgam.explorer.contextual.core.query;
import java.util.List;
/**
*
*/
public interface ICustomQueryExecutionManager {
/**
*
* @param query_p
* @param modelElment
* @return
*/
public List<Object> executeWithResult(Object query_p, Object modelElment);
}