Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ce4d616836ec4f2d925597d26e93ce9488ec4e20 (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
RoomModel room.basic.annotations {
	
	AnnotationType BehaviorManual {
		target = ActorBehavior
	}
	
	AnnotationType DataLogging {
		target = SubSystemClass
		mandatory attribute pathlist: ptCharacter
	}
	
	AnnotationType Gnuplot {
		target = SubSystemClass
		mandatory attribute format: ptCharacter
		mandatory attribute outputfile: ptCharacter
		mandatory attribute width: ptInteger
		mandatory attribute height: ptInteger
		optional attribute fontsize: ptInteger
	}
	
	AnnotationType GnuplotGraph {
		target = SubSystemClass
		mandatory attribute paths: ptCharacter
		optional attribute interval: ptInteger
		optional attribute xtics: ptReal
		optional attribute mxtics: ptInteger
		optional attribute ymin: ptReal
		optional attribute ymax: ptReal
	}
	
}

Back to the top