Android Open Source - triptracker Log Message






From Project

Back to project page triptracker.

License

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.

Java Source Code

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;
    }
}




Java Source Code List

org.jcs.triptracker.AlarmBroadcast.java
org.jcs.triptracker.LogMessage.java
org.jcs.triptracker.MainActivity.java
org.jcs.triptracker.Prefs.java
org.jcs.triptracker.TrackerService.java