Revision 104,
409 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package schedframe.scheduling; |
---|
2 | |
---|
3 | public class ReservedHost { |
---|
4 | protected String name; |
---|
5 | protected int reservedSlotsCount; |
---|
6 | |
---|
7 | public String getName() { |
---|
8 | return name; |
---|
9 | } |
---|
10 | public void setName(String name) { |
---|
11 | this.name = name; |
---|
12 | } |
---|
13 | public int getReservedSlotsCount() { |
---|
14 | return reservedSlotsCount; |
---|
15 | } |
---|
16 | public void setReservedSlotsCount(int reservedSlotsCount) { |
---|
17 | this.reservedSlotsCount = reservedSlotsCount; |
---|
18 | } |
---|
19 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.