blob: be9d2cd1394264d5b1c261252aefce892c993dca [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2014 itemis 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:
* itemis - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.emf.scoping;
import org.eclipse.core.resources.IResource;
public class FileResourceScopeProvider extends AbstractResourceScopeProvider {
/*
* @see
* org.eclipse.sphinx.emf.scoping.AbstractResourceScopeProvider#createScope(org.eclipse.core.resources.IResource)
*/
@Override
protected FileResourceScope createScope(IResource resource) {
return new FileResourceScope(resource);
}
}