package com.vci.client.common.datatype; import java.util.Date; import com.vci.omd.dataType.VTDataType; public class VTTime extends VTDataType{ private Date value; public Date getValue(){ return this.value; } public VTTime(Date value){ this.value = value; } }