Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 28efa4f1a16504f2a94c96be0dc5ed61aaf68759 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*****************************************************************************
 * Copyright (c) 2015 CEA LIST and others.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Initial API and implementation
 *   
 *****************************************************************************/
grammar org.eclipse.papyrus.uml.textedit.valuespecification.xtext.UmlValueSpecification with org.eclipse.xtext.common.Terminals

import "http://www.eclipse.org/uml2/5.0.0/UML" as uml
import "http://www.eclipse.org/emf/2002/Ecore" as ecore


generate umlValueSpecification "http://www.eclipse.org/papyrus/uml/textedit/valuespecification/xtext/UmlValueSpecification"
	
AbstractRule:
	(visibility=VisibilityKind)?
	(name=VALUE_SPECIFICATION_ID)?
	((instanceSpecification=[uml::InstanceSpecification]) |
	value=(LiteralBooleanRule |
		   LiteralIntegerOrUnlimitedNaturalRule |
		   LiteralRealRule |
		   LiteralNullRule |
		   LiteralStringRule) |
	undefined=UndefinedRule)
;

LiteralBooleanRule:
	value=('true'|'false')
;

LiteralIntegerOrUnlimitedNaturalRule:
	(value=(INT|VALUE_SPECIFICATION_NEGATIVE_INT) |
	unlimited='*')
;

LiteralRealRule:
	value=VALUE_SPECIFICATION_DOUBLE
;


LiteralNullRule:
	value='null'
;

LiteralStringRule:
	value=STRING
;

UndefinedRule:
	value='<Undefined>'
;

VisibilityKind:
	public = '+'
	| private = '-'
	| protected = '#'
	| package = '~' ;
	
// Manage the basic terminals
terminal VALUE_SPECIFICATION_ID returns ecore::EString: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'_'|'-'|'0'..'9')*'=';
terminal VALUE_SPECIFICATION_NEGATIVE_INT returns ecore::EInt: '-'INT;
terminal VALUE_SPECIFICATION_DOUBLE returns ecore::EDouble: ('-')?((INT('.'|',')INT)|(INT('.'|','))|(('.'|',')INT));

Back to the top