net.sf.marineapi.nmea.event.SentenceEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.everit.osgi.bundles.net.sf.marineapi Show documentation
Show all versions of org.everit.osgi.bundles.net.sf.marineapi Show documentation
Java Marine API is an NMEA 0183 library for Java (http://ktuukkan.github.io/marine-api/).
The newest version!
/*
* SentenceEvent.java
* Copyright (C) 2010 Kimmo Tuukkanen
*
* This file is part of Java Marine API.
*
*
* Java Marine API is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Java Marine API is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Java Marine API. If not, see .
*/
package net.sf.marineapi.nmea.event;
import java.util.EventObject;
import net.sf.marineapi.nmea.sentence.Sentence;
/**
* Sentence events occur when a valid NMEA 0183 sentence has been read from the
* data source.
*
* @author Kimmo Tuukkanen
* @see SentenceListener
* @see net.sf.marineapi.nmea.io.SentenceReader
*/
public class SentenceEvent extends EventObject {
private static final long serialVersionUID = -2756954014186470514L;
private final long timestamp = System.currentTimeMillis();
private final Sentence sentence;
/**
* Creates a new SentenceEvent object.
*
* @param src Object that fired the event
* @param s Sentence that triggered the event
* @throws IllegalArgumentException If specified sentence is
* null
*/
public SentenceEvent(Object src, Sentence s) {
super(src);
if (s == null) {
throw new IllegalArgumentException("Sentence cannot be null");
}
this.sentence = s;
}
/**
* Gets the Sentence object that triggered the event.
*
* @return Sentence object
*/
public Sentence getSentence() {
return sentence;
}
/**
* Get system time when this event was created.
*
* @return Milliseconds timestamp
*/
public long getTimeStamp() {
return timestamp;
}
}