View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.continuum.model.scm.v1_0_9;
9   
10    //---------------------------------/
11   //- Imported classes and packages -/
12  //---------------------------------/
13  
14  import org.apache.maven.continuum.model.project.v1_0_9.BuildDefinition;
15  import org.apache.maven.continuum.model.project.v1_0_9.BuildResult;
16  import org.apache.maven.continuum.model.project.v1_0_9.ContinuumDatabase;
17  import org.apache.maven.continuum.model.project.v1_0_9.Project;
18  import org.apache.maven.continuum.model.project.v1_0_9.ProjectDependency;
19  import org.apache.maven.continuum.model.project.v1_0_9.ProjectDeveloper;
20  import org.apache.maven.continuum.model.project.v1_0_9.ProjectGroup;
21  import org.apache.maven.continuum.model.project.v1_0_9.ProjectNotifier;
22  import org.apache.maven.continuum.model.project.v1_0_9.Schedule;
23  import org.apache.maven.continuum.model.system.v1_0_9.NotificationAddress;
24  import org.apache.maven.continuum.model.system.v1_0_9.SystemConfiguration;
25  
26  /**
27   * Class TestCaseFailure.
28   * 
29   * @version $Revision$ $Date$
30   */
31  @SuppressWarnings( "all" )
32  public class TestCaseFailure
33      implements java.io.Serializable
34  {
35  
36        //--------------------------/
37       //- Class/Member Variables -/
38      //--------------------------/
39  
40      /**
41       * Field name.
42       */
43      private String name;
44  
45      /**
46       * Field exception.
47       */
48      private String exception;
49  
50  
51        //-----------/
52       //- Methods -/
53      //-----------/
54  
55      /**
56       * Get the exception field.
57       * 
58       * @return String
59       */
60      public String getException()
61      {
62          return this.exception;
63      } //-- String getException()
64  
65      /**
66       * Get the name field.
67       * 
68       * @return String
69       */
70      public String getName()
71      {
72          return this.name;
73      } //-- String getName()
74  
75      /**
76       * Set the exception field.
77       * 
78       * @param exception
79       */
80      public void setException( String exception )
81      {
82          this.exception = exception;
83      } //-- void setException( String )
84  
85      /**
86       * Set the name field.
87       * 
88       * @param name
89       */
90      public void setName( String name )
91      {
92          this.name = name;
93      } //-- void setName( String )
94  
95  }