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 GoalId.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class GoalId
15      extends CoordinatesBase
16      implements java.io.Serializable
17  {
18  
19        //--------------------------/
20       //- Class/Member Variables -/
21      //--------------------------/
22  
23      /**
24       * Field goal.
25       */
26      private String goal;
27  
28  
29        //-----------/
30       //- Methods -/
31      //-----------/
32  
33      /**
34       * Get the goal field.
35       * 
36       * @return String
37       */
38      public String getGoal()
39      {
40          return this.goal;
41      } //-- String getGoal()
42  
43      /**
44       * Set the goal field.
45       * 
46       * @param goal a goal object.
47       */
48      public void setGoal( String goal )
49      {
50          this.goal = goal;
51      } //-- void setGoal( String )
52  
53  }