001 package nl.cwi.sen1.gui;
002
003 import nl.cwi.sen1.gui.component.StudioComponent;
004
005 public class StudioEvent {
006 private StudioComponent source;
007
008 public StudioEvent(StudioComponent source) {
009 this.source = source;
010 }
011
012 public StudioComponent getSource() {
013 return source;
014 }
015 }