1
2
3
4
5
6 package org.apache.maven.model;
7
8
9
10
11
12
13 @SuppressWarnings( "all" )
14 public class Developer
15 extends Contributor
16 implements java.io.Serializable, java.lang.Cloneable
17 {
18
19
20
21
22
23
24
25
26 private String id;
27
28
29
30
31
32
33
34
35
36
37
38 public Developer clone()
39 {
40 try
41 {
42 Developer copy = (Developer) super.clone();
43
44 return copy;
45 }
46 catch ( java.lang.Exception ex )
47 {
48 throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
49 + " does not support clone()" ).initCause( ex );
50 }
51 }
52
53
54
55
56
57
58 public String getId()
59 {
60 return this.id;
61 }
62
63
64
65
66
67
68 public void setId( String id )
69 {
70 this.id = id;
71 }
72
73
74
75
76
77
78 public String toString()
79 {
80 return "Developer {id=" + id + ", " + super.toString() + "}";
81 }
82
83
84 }