SomeNet
/
public repos
/
pub
/
jan
/
dst18.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[2.3.3] Interruption timers. We have them.
[pub/jan/dst18.git]
/
ass1-jpa
/
src
/
main
/
java
/
dst
/
ass1
/
jpa
/
model
/
IEnrollmentKey.java
1
package dst.ass1.jpa.model;
2
3
public interface IEnrollmentKey {
4
5
IParticipant getParticipant();
6
7
void setParticipant(IParticipant participant);
8
9
ICourse getCourse();
10
11
void setCourse(ICourse course);
12
13
}