001/**
002 * Copyright (c) 2017 Red Hat Inc
003 * All rights reserved. This program and the accompanying materials
004 * are made available under the terms of the Eclipse Public License v1.0
005 * which accompanies this distribution, and is available at
006 * http://www.eclipse.org/legal/epl-v10.html
007 * 
008 * Contributors:
009 *     Jens Reimann - initial API and implementation
010 */
011package de.dentrassi.varlink.idl.generator;
012
013import org.eclipse.emf.ecore.resource.Resource;
014import org.eclipse.xtext.generator.AbstractGenerator;
015import org.eclipse.xtext.generator.IFileSystemAccess2;
016import org.eclipse.xtext.generator.IGeneratorContext;
017
018@SuppressWarnings("all")
019public class VarlinkIdlGenerator extends AbstractGenerator {
020  @Override
021  public void doGenerate(final Resource input, final IFileSystemAccess2 fsa, final IGeneratorContext context) {
022  }
023}