SomeNet
/
public repos
/
pub
/
jan
/
dst18.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
GITOLITE.txt
[pub/jan/dst18.git]
/
ass1-jpa
/
src
/
main
/
java
/
dst
/
ass1
/
jpa
/
model
/
IAddress.java
1
package dst.ass1.jpa.model;
2
3
public interface IAddress {
4
5
String getStreet();
6
7
void setStreet(String street);
8
9
String getCity();
10
11
void setCity(String city);
12
13
String getZipCode();
14
15
void setZipCode(String zipCode);
16
17
}