001 package railo.runtime.type.dt; 002 003 /** 004 * time interface 005 */ 006 public abstract class Time extends DateTime { 007 /** 008 * constructor of the class 009 * @param time 010 */ 011 public Time(long time) { 012 super(time); 013 } 014 015 /** 016 * constructor of the class 017 */ 018 public Time() { 019 super(); 020 } 021 }