Here you can find the source of currentTimePlusNSeconds(long n)
public static long currentTimePlusNSeconds(long n)
//package com.java2s; //License from project: Apache License public class Main { public static long currentTimePlusNSeconds(long n) { return currentTimeSeconds() + n; }/* w ww . ja v a 2 s .c o m*/ public static long currentTimeSeconds() { return System.currentTimeMillis() / 1000; } }