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 AttachEvent 00015 { 00016 Phidget source; 00017 00023 public AttachEvent(Phidget source) { 00024 this.source = source; 00025 } 00026 00034 public Phidget getSource() { 00035 return source; 00036 } 00037 00043 public String toString() { 00044 return source.toString(); 00045 } 00046 }