Biblioteca Java - Blame information for rev 17
Subversion Repositories:
Rev | Author | Line No. | Line |
---|---|---|---|
17 | mihai | 1 | package rtuml.capsule; |
2 | |||
3 | interface Port { | ||
4 | /** | ||
5 | * Senda signal to the peer port. | ||
6 | * @param e | ||
7 | */ | ||
8 | void signal(Event e); | ||
9 | |||
10 | /* | ||
11 | * Receive a notiviation taht a messages (event) | ||
12 | */ | ||
13 | void handle(Event e); | ||
14 | } |