/pyjs/tests/test016.js
JavaScript | 9 lines | 9 code | 0 blank | 0 comment | 0 complexity | d93c2fc18cf69b41967d5a95f7ece721 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
- __TimeSlot.prototype.__class__ = "TimeSlot";
- function TimeSlot() {
- return new __TimeSlot();
- }
- function __TimeSlot() {
- }
- __TimeSlot.prototype.getDescription = function() {
- return ( ( this.getHrsMins(this.startMinutes) + "-" ) + this.getHrsMins(this.endMinutes) ) ;
- };