Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d54f941406fb4c1f846054fc72777e00b10034ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.eclipse.papyrus.uml.textedit.property.xtext.generator;

import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.xtext.generator.IFileSystemAccess;
import org.eclipse.xtext.generator.IGenerator;

@SuppressWarnings("all")
public class UmlPropertyGenerator implements IGenerator {
  public void doGenerate(final Resource resource, final IFileSystemAccess fsa) {
  }
}

Back to the top