blob: 0bdb2ad2ce2be258ee051eb70e51636f5c271c7d [file] [log] [blame]
/**
* Copyright (c) 2011, 2014 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*
* Based on Xtext org.eclipse.xtext.common.types.access.reflect.ReflectionTypeScope
*/
package org.eclipse.osbp.dsl.xtext.types.bundles;
import org.eclipse.xtext.common.types.xtext.AbstractTypeScope;
import org.eclipse.xtext.naming.IQualifiedNameConverter;
import org.eclipse.xtext.resource.IEObjectDescription;
import com.google.common.base.Predicate;
@SuppressWarnings("restriction")
public class BundleSpaceTypeScope extends AbstractTypeScope {
public BundleSpaceTypeScope(BundleSpaceTypeProvider typeProvider,
IQualifiedNameConverter qualifiedNameConverter,
Predicate<IEObjectDescription> filter) {
super(typeProvider, qualifiedNameConverter, filter);
}
}