Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.eef.codegen.ecore/templates/edit/module.gwt.xmljet')
-rw-r--r--plugins/org.eclipse.emf.eef.codegen.ecore/templates/edit/module.gwt.xmljet31
1 files changed, 0 insertions, 31 deletions
diff --git a/plugins/org.eclipse.emf.eef.codegen.ecore/templates/edit/module.gwt.xmljet b/plugins/org.eclipse.emf.eef.codegen.ecore/templates/edit/module.gwt.xmljet
deleted file mode 100644
index 7696c398c..000000000
--- a/plugins/org.eclipse.emf.eef.codegen.ecore/templates/edit/module.gwt.xmljet
+++ /dev/null
@@ -1,31 +0,0 @@
-<%@ jet package="org.eclipse.emf.codegen.ecore.templates.edit" imports="java.util.* org.eclipse.emf.codegen.ecore.genmodel.*" class="ModuleGWTXML" version="$Id: module.gwt.xmljet,v 1.2 2011/02/01 15:42:02 sbouchet Exp $" %>
-<%
-/**
- * <copyright>
- *
- * Copyright (c) 2010 Ed Merks 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:
- * Ed Merks - Initial API and implementation
- *
- * </copyright>
- */
-%>
-<%GenModel genModel = (GenModel)argument; /* Trick to import java.util.* without warnings */Iterator.class.getName();%>
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.0.1//EN" "http://google-web-toolkit.googlecode.com/svn/tags/2.0.1/distro-source/core/src/gwt-module.dtd">
-
-<%@ include file="../Header.xmljetinc"%>
-
-<module>
-<%for (String inherits : genModel.getEditModuleInherits()) {%>
- <inherits name="<%=inherits%>" />
-<%}%>
-<%for (String source : genModel.getEditModuleSources()) {%>
- <source path="<%=source%>"/>
-<%}%>
-</module> \ No newline at end of file

Back to the top