Skip to main content
summaryrefslogtreecommitdiffstats
blob: ad08cdc367a8b997c395f14129eba4016dd349cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.papyrus.alf.syntax.units;

public class EnumerationLiteralName {

	// Helper Operations
	
	/*
	 * Returns false. (Enumeration literal name cannot have annotations.)
	 */
	public boolean annotationAllowed(StereotypeAnnotation annotation) {
		return false ;
	}
	
	
}

Back to the top