Back to project page Tacere.
The source code is released under:
MIT License
If you think the Android project Tacere listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (c) 2014 Jonathan Nelson/* w w w.j a v a 2 s .co m*/ * Released under the BSD license. For details see the COPYING file. */ package org.ciasaboark.tacere.converter; import java.util.Date; /** * Created by Jonathan Nelson on 11/28/14. */ public class TimeConverter { private static final String TAG = "TimeConverter"; private final long TIME_STAMP; public TimeConverter(long epochTime) { TIME_STAMP = epochTime; } public String getEndTime() { Date date = new Date(TIME_STAMP); return null; } }