source:
DCWoRMS/branches/coolemall/src/schedframe/resources/units/CustomResourceUnitName.java
@
1396
Revision 1396, 248 bytes checked in by wojtekp, 11 years ago (diff) | |
---|---|
|
Rev | Line | |
---|---|---|
[477] | 1 | package schedframe.resources.units; |
2 | ||
[1396] | 3 | public class CustomResourceUnitName implements ResourceUnitName { |
[477] | 4 | |
5 | protected String name; | |
6 | ||
[1396] | 7 | public CustomResourceUnitName(String name) { |
[477] | 8 | this.name = name; |
9 | } | |
10 | ||
[1396] | 11 | public String getLabel() { |
[477] | 12 | return name; |
13 | } | |
14 | ||
15 | } |
Note: See TracBrowser
for help on using the repository browser.