Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3396104b200cc40a7863a784d11c555e96dd4d9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.eclipse.papyrus.uml.textedit.connectionpointreference.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 UMLConnectionPointReferenceGenerator implements IGenerator {
  public void doGenerate(final Resource resource, final IFileSystemAccess fsa) {
  }
}

Back to the top