/pyjs/tests/test016.js
http://pyjamas.googlecode.com/ · JavaScript · 9 lines · 9 code · 0 blank · 0 comment · 0 complexity · d93c2fc18cf69b41967d5a95f7ece721 MD5 · raw file
- __TimeSlot.prototype.__class__ = "TimeSlot";
- function TimeSlot() {
- return new __TimeSlot();
- }
- function __TimeSlot() {
- }
- __TimeSlot.prototype.getDescription = function() {
- return ( ( this.getHrsMins(this.startMinutes) + "-" ) + this.getHrsMins(this.endMinutes) ) ;
- };