Skip to main content
summaryrefslogtreecommitdiffstats
blob: bb0861e28cf987137ac435638502dcb5e21df73c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.eclipse.papyrus.alf.syntax.expressions;

import org.eclipse.internal.xtend.expression.ast.SyntaxElement;

public class TemplateParameterSubstitution extends SyntaxElement {

	// Synthesized Properties
	public QualifiedName argumentName ;
	public String parameterName ;
	
}

Back to the top