1 /* 2 * Licensed under the GPL License. You may not use this file except in compliance with the License. 3 * You may obtain a copy of the License at 4 * 5 * https://www.gnu.org/licenses/old-licenses/gpl-2.0.html 6 * 7 * THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, 8 * WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR 9 * PURPOSE. 10 */ 11 package psiprobe.model; 12 13 /** 14 * A model class representing a filter. 15 */ 16 public class FilterInfo { 17 18 /** The filter name. */ 19 private String filterName; 20 21 /** The filter class. */ 22 private String filterClass; 23 24 /** The filter desc. */ 25 private String filterDesc; 26 27 /** 28 * Gets the filter name. 29 * 30 * @return the filter name 31 */ 32 public String getFilterName() { 33 return filterName; 34 } 35 36 /** 37 * Sets the filter name. 38 * 39 * @param filterName the new filter name 40 */ 41 public void setFilterName(String filterName) { 42 this.filterName = filterName; 43 } 44 45 /** 46 * Gets the filter class. 47 * 48 * @return the filter class 49 */ 50 public String getFilterClass() { 51 return filterClass; 52 } 53 54 /** 55 * Sets the filter class. 56 * 57 * @param filterClass the new filter class 58 */ 59 public void setFilterClass(String filterClass) { 60 this.filterClass = filterClass; 61 } 62 63 /** 64 * Gets the filter desc. 65 * 66 * @return the filter desc 67 */ 68 public String getFilterDesc() { 69 return filterDesc; 70 } 71 72 /** 73 * Sets the filter desc. 74 * 75 * @param filterDesc the new filter desc 76 */ 77 public void setFilterDesc(String filterDesc) { 78 this.filterDesc = filterDesc; 79 } 80 81 }