|
Kieker 1.9 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Retention(value=RUNTIME) @Target(value=METHOD) @Inherited public @interface InputPort
This annotation can be used to mark methods as input ports. The corresponding methods should only get an instance of the class Object
and nothing
else.
Furthermore the port allows to specify the event types for this port and the name. There is also a
field for a human-readable description available.
Required Element Summary | |
---|---|
String |
name
The name which is used to identify this port. |
Optional Element Summary | |
---|---|
String |
description
The human-readable description of this port. |
Class<?>[] |
eventTypes
The event types which are used for this port. |
Element Detail |
---|
public abstract String name
public abstract String description
public abstract Class<?>[] eventTypes
|
Kieker 1.9 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |