Here you can find the source of getMessageTimestamp(int id)
public static Timestamp getMessageTimestamp(int id)
//package com.java2s; //License from project: Open Source License import java.sql.Timestamp; public class Main { public static Timestamp getMessageTimestamp(int id) { Timestamp t = null;// w ww .ja va 2s .c o m // code to get the timestamp of a given message id return t; } }