00001 /* 00002 * Copyright 2006 Phidgets Inc. All rights reserved. 00003 */ 00004 00005 package com.phidgets.event; 00006 00007 import com.phidgets.Phidget; 00008 import com.phidgets.SpatialEventData; 00009 00015 public class SpatialDataEvent 00016 { 00017 Phidget source; 00018 SpatialEventData[] data; 00019 00026 public SpatialDataEvent(Phidget source, SpatialEventData[] data) 00027 { 00028 this.source = source; 00029 this.data = data; 00030 } 00031 00039 public Phidget getSource() { 00040 return source; 00041 } 00042 00048 public SpatialEventData[] getData() { 00049 return data; 00050 } 00051 00057 public String toString() { 00058 return source.toString() + " Spatial Data"; 00059 } 00060 }