View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 1.11,
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  public class Tag
14      implements java.io.Serializable
15  {
16  
17        //--------------------------/
18       //- Class/Member Variables -/
19      //--------------------------/
20  
21      /**
22       * The string to be used in the TagList search.
23       */
24      private String matchString;
25  
26      /**
27       * The type of comparison to perform on the string.  Options: 
28       * exact, ignoreCase, regEx   Default = exact.
29       */
30      private String matchType;
31  
32  
33        //-----------/
34       //- Methods -/
35      //-----------/
36  
37      /**
38       * Get the string to be used in the TagList search.
39       * 
40       * @return String
41       */
42      public String getMatchString()
43      {
44          return this.matchString;
45      } //-- String getMatchString()
46  
47      /**
48       * Get the type of comparison to perform on the string. 
49       * Options:  exact, ignoreCase, regEx   Default = exact.
50       * 
51       * @return String
52       */
53      public String getMatchType()
54      {
55          return this.matchType;
56      } //-- String getMatchType()
57  
58      /**
59       * Set the string to be used in the TagList search.
60       * 
61       * @param matchString
62       */
63      public void setMatchString( String matchString )
64      {
65          this.matchString = matchString;
66      } //-- void setMatchString( String )
67  
68      /**
69       * Set the type of comparison to perform on the string. 
70       * Options:  exact, ignoreCase, regEx   Default = exact.
71       * 
72       * @param matchType
73       */
74      public void setMatchType( String matchType )
75      {
76          this.matchType = matchType;
77      } //-- void setMatchType( String )
78  
79  }