00001 /* 00002 * Copyright 2006 Phidgets Inc. All rights reserved. 00003 */ 00004 00005 package com.phidgets.event; 00006 00007 import com.phidgets.Phidget; 00008 00014 public class GPSPositionFixStatusChangeEvent 00015 { 00016 Phidget source; 00017 boolean status; 00018 00019 00025 public GPSPositionFixStatusChangeEvent(Phidget source, boolean status) { 00026 this.source = source; 00027 this.status = status; 00028 } 00029 00037 public Phidget getSource() { 00038 return source; 00039 } 00040 00046 public boolean getStatus() { 00047 return status; 00048 } 00049 00055 public String toString() { 00056 return("Position fix status IS : " + status); 00057 } 00058 }