Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: dbdbb0a8d87ab45810c1b3fe3bada010a3fff592 (plain) (tree)
1
2
3
4
5
6
7
8
                                  


                                                                                                     



                                       










                                                                                           




                                                         


















                                                           
 
RoomModel room.basic.annotations {
	/**
	 * BehaviorManual suppresses the generation of the implementation file (.c) for an ActorClass
	 */
	AnnotationType BehaviorManual {
		target = ActorBehavior
	}
	
	/**
	 * Marks elements as deprecated.
	 */
	AnnotationType Deprecated {
		target = {
			ActorClass, DataClass, Message, Port, ProtocolClass, SubSystemClass
		}
		optional attribute error: ptBoolean
		optional attribute noGenerate: ptBoolean
	}
	
	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