Home | History | Annotate | Download | only in java-jni

Lines Matching refs:date

7 import java.util.Date;
188 /** Export a date to a clearsilver tree using a specified timezone */
189 public void exportDate(String hdfname, TimeZone timeZone, Date date) {
195 cal.setTime(date);
232 /** Export a date to a clearsilver tree using a specified timezone */
244 Date date = new Date((long)tt * 1000);
246 exportDate(hdfname, timeZone, date);