Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ea4e86aebaf37d3826e371570825512f1e479668 (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
annotate ATL {
    annotate ATL with
		nsURI='http://www.eclipse.org/gmt/2005/ATL',
        nsPrefix='atl';
    
    annotate OCL with
        nsURI='http://www.eclipse.org/gmt/2005/OCL',
        nsPrefix='ocl';
    
    annotate PrimitiveTypes with
        nsURI='http://www.eclipse.org/gmt/2005/ATL-PrimitiveTypes',
        nsPrefix='ptypes';
    
    annotate "PrimitiveTypes::Boolean" with
        instanceClassName='boolean';
    
    annotate "PrimitiveTypes::Double" with
        instanceClassName='double';
    
    annotate "PrimitiveTypes::Integer" with
        instanceClassName='int';
    
    annotate "PrimitiveTypes::String" with
        instanceClassName='java.lang.String';
    
}

Back to the top