View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 2.1.2,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.buildcache.xml.config;
7   
8   /**
9    * Class ExecutionIdsList.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class ExecutionIdsList
15      extends CoordinatesBase
16      implements java.io.Serializable
17  {
18  
19        //--------------------------/
20       //- Class/Member Variables -/
21      //--------------------------/
22  
23      /**
24       * Field execIds.
25       */
26      private java.util.List<String> execIds;
27  
28  
29        //-----------/
30       //- Methods -/
31      //-----------/
32  
33      /**
34       * Method addExecId.
35       * 
36       * @param string a string object.
37       */
38      public void addExecId( String string )
39      {
40          getExecIds().add( string );
41      } //-- void addExecId( String )
42  
43      /**
44       * Method getExecIds.
45       * 
46       * @return List
47       */
48      public java.util.List<String> getExecIds()
49      {
50          if ( this.execIds == null )
51          {
52              this.execIds = new java.util.ArrayList<String>();
53          }
54  
55          return this.execIds;
56      } //-- java.util.List<String> getExecIds()
57  
58      /**
59       * Method removeExecId.
60       * 
61       * @param string a string object.
62       */
63      public void removeExecId( String string )
64      {
65          getExecIds().remove( string );
66      } //-- void removeExecId( String )
67  
68      /**
69       * Set executions ids list with plugin identifier.
70       * 
71       * @param execIds a execIds object.
72       */
73      public void setExecIds( java.util.List<String> execIds )
74      {
75          this.execIds = execIds;
76      } //-- void setExecIds( java.util.List )
77  
78  }