/******************************************************************************* * Copyright (c) 2011 itemis AG (http://www.itemis.eu) 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 *******************************************************************************/ package org.lunifera.dsl.common.xtext.resource; import org.eclipse.emf.common.util.URI; import org.eclipse.emf.ecore.EObject; import org.eclipse.xtext.resource.IEObjectDescription; import org.eclipse.xtext.resource.IReferenceDescription; import org.eclipse.xtext.util.IAcceptor; import org.eclipse.xtext.xbase.resource.XbaseResourceDescriptionStrategy; import com.google.inject.Singleton; /** * @author Jan Koehnlein - Initial contribution and API */ @Singleton public class CommonGrammarResourceDescriptionStrategy extends XbaseResourceDescriptionStrategy { @Override public boolean createEObjectDescriptions(EObject eObject, IAcceptor<IEObjectDescription> acceptor) { return super.createEObjectDescriptions(eObject, acceptor); } @Override public boolean createReferenceDescriptions(EObject from, URI exportedContainerURI, IAcceptor<IReferenceDescription> acceptor) { return super.createReferenceDescriptions(from, exportedContainerURI, acceptor); } }