1 // =================== DO NOT EDIT THIS FILE ==================== 2 // Generated by Modello 2.4.0, 3 // any modifications will be overwritten. 4 // ============================================================== 5 6 package org.codehaus.mojo.taglist.options; 7 8 /** 9 * The options for the specific tag. 10 * 11 * @version $Revision$ $Date$ 12 */ 13 @SuppressWarnings( "all" ) 14 public class Tag 15 implements java.io.Serializable 16 { 17 18 //--------------------------/ 19 //- Class/Member Variables -/ 20 //--------------------------/ 21 22 /** 23 * The string to be used in the TagList search. 24 */ 25 private String matchString; 26 27 /** 28 * The type of comparison to perform on the string. Options: 29 * exact, ignoreCase, regEx. 30 */ 31 private String matchType = "exact"; 32 33 34 //-----------/ 35 //- Methods -/ 36 //-----------/ 37 38 /** 39 * Get the string to be used in the TagList search. 40 * 41 * @return String 42 */ 43 public String getMatchString() 44 { 45 return this.matchString; 46 } //-- String getMatchString() 47 48 /** 49 * Get the type of comparison to perform on the string. 50 * Options: exact, ignoreCase, regEx. 51 * 52 * @return String 53 */ 54 public String getMatchType() 55 { 56 return this.matchType; 57 } //-- String getMatchType() 58 59 /** 60 * Set the string to be used in the TagList search. 61 * 62 * @param matchString a matchString object. 63 */ 64 public void setMatchString( String matchString ) 65 { 66 this.matchString = matchString; 67 } //-- void setMatchString( String ) 68 69 /** 70 * Set the type of comparison to perform on the string. 71 * Options: exact, ignoreCase, regEx. 72 * 73 * @param matchType a matchType object. 74 */ 75 public void setMatchType( String matchType ) 76 { 77 this.matchType = matchType; 78 } //-- void setMatchType( String ) 79 80 }