1
2
3
4
5
6 package org.apache.maven.model;
7
8
9
10
11
12
13 @SuppressWarnings( "all" )
14 public class Prerequisites
15 implements java.io.Serializable, java.lang.Cloneable, org.apache.maven.model.InputLocationTracker
16 {
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 private String maven = "2.0";
32
33
34
35
36 private java.util.Map<Object, InputLocation> locations;
37
38
39
40
41
42
43
44
45
46
47
48 public Prerequisites clone()
49 {
50 try
51 {
52 Prerequisites copy = (Prerequisites) super.clone();
53
54 if ( copy.locations != null )
55 {
56 copy.locations = new java.util.LinkedHashMap( copy.locations );
57 }
58
59 return copy;
60 }
61 catch ( java.lang.Exception ex )
62 {
63 throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
64 + " does not support clone()" ).initCause( ex );
65 }
66 }
67
68
69
70
71
72
73
74 public InputLocation getLocation( Object key )
75 {
76 return ( locations != null ) ? locations.get( key ) : null;
77 }
78
79
80
81
82
83
84
85
86
87
88 public String getMaven()
89 {
90 return this.maven;
91 }
92
93
94
95
96
97
98
99 public void setLocation( Object key, InputLocation location )
100 {
101 if ( location != null )
102 {
103 if ( this.locations == null )
104 {
105 this.locations = new java.util.LinkedHashMap<Object, InputLocation>();
106 }
107 this.locations.put( key, location );
108 }
109 }
110
111
112
113
114
115
116
117
118
119
120 public void setMaven( String maven )
121 {
122 this.maven = maven;
123 }
124
125 }