blob: 358f6b8800c3085b57d7d22b0c91bf5dd113213e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.acceleo.query.runtime;
import java.util.List;
/**
* Interface that can be implemented to provides its own {@link IService}.
*
* @author <a href="mailto:yvan.lussaud@obeo.fr">Yvan Lussaud</a>
*/
public interface IServiceProvider {
/**
* Gets services offered by this class.
*
* @param queryEnvironment
* the {@link IReadOnlyQueryEnvironment}
* @return services offered by this class
*/
List<IService<?>> getServices(IReadOnlyQueryEnvironment queryEnvironment);
}