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