Back to project page triptracker.
The source code is released under:
Copyright (c) 2012 joshua stein <jcs@jcs.org> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redist...
If you think the Android project triptracker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.jcs.triptracker; //from ww w . ja v a 2s. c o m import java.util.Date; public class LogMessage { public final Date date; public final String message; public LogMessage(Date date, String message) { this.date = date; this.message = message; } }