1 /*** PlateViewEvent.java - part of the MirkE (say murky) application for colormetric analysis emphesizing 2 kinetics. 3 4 Created by: Scott Menor on 21 July, 2004. 5 Last modified by: Scott Menor on 12 December, 2004 6 7 Copyright (c) 2004 Arizona State University - Cancer Research Institute. All rights reserved. 8 9 MirkE is free software; you can redistribute it and/or modify 10 it under the terms of the GNU General Public License as published by 11 the Free Software Foundation; either version 2 of the License, or 12 (at your option) any later version. 13 14 MirkE is distributed in the hope that it will be useful, 15 but WITHOUT ANY WARRANTY; without even the implied warranty of 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 GNU General Public License for more details. 18 19 You should have received a copy of the GNU General Public License 20 along with MirkE; if not, write to the Free Software 21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US 22 */ 23 24 package edu.asu.cri.MirkE.gui; 25 26 /*** 27 * @author smenor 28 * 29 */ 30 public class PlateViewEvent { 31 private PlateView plateView; 32 33 /*** 34 @param plateView 35 */ 36 public void setPlateView(PlateView plateView) { 37 this.plateView = plateView; 38 } 39 40 /*** 41 @return plateView 42 */ 43 public PlateView getPlateView() { 44 return plateView; 45 } 46 47 /*** zero parameter constructor 48 49 */ 50 public PlateViewEvent() { 51 52 } 53 54 /*** constructor 55 @param plateView 56 */ 57 public PlateViewEvent(PlateView plateView) { 58 this.plateView = plateView; 59 } 60 }