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

import java.util.List;

public class PositionalTuple extends Tuple {

	// Synthesized Properties
	public List<Expression> expression ;
	
}

Back to the top