001/* 002 * Copyright 2010-2015 Institut Pasteur. 003 * 004 * This file is part of Icy. 005 * 006 * Icy is free software: you can redistribute it and/or modify 007 * it under the terms of the GNU General Public License as published by 008 * the Free Software Foundation, either version 3 of the License, or 009 * (at your option) any later version. 010 * 011 * Icy is distributed in the hope that it will be useful, 012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 014 * GNU General Public License for more details. 015 * 016 * You should have received a copy of the GNU General Public License 017 * along with Icy. If not, see <http://www.gnu.org/licenses/>. 018 */ 019package icy.image.lut; 020 021/** 022 * @deprecated 023 */ 024@Deprecated 025public class LUTBandEvent 026{ 027 public enum LUTBandEventType 028 { 029 SCALER_CHANGED, COLORMAP_CHANGED 030 } 031 032 private final LUTBand lutband; 033 private final LUTBandEventType type; 034 035 /** 036 * @param lutband 037 * @param type 038 */ 039 public LUTBandEvent(LUTBand lutband, LUTBandEventType type) 040 { 041 super(); 042 043 this.lutband = lutband; 044 this.type = type; 045 } 046 047 /** 048 * @return the lutband 049 */ 050 public LUTBand getLutband() 051 { 052 return lutband; 053 } 054 055 /** 056 * @return the type 057 */ 058 public LUTBandEventType getType() 059 { 060 return type; 061 } 062 063}