Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
BootclasspathArtifact |
|
| 1.0;1 |
1 | /* | |
2 | * $Id$ | |
3 | */ | |
4 | ||
5 | package org.apache.maven.plugin.javadoc.options; | |
6 | ||
7 | //---------------------------------/ | |
8 | //- Imported classes and packages -/ | |
9 | //---------------------------------/ | |
10 | ||
11 | import java.util.Date; | |
12 | ||
13 | /** | |
14 | * A bootclasspath parameter as artifact. | |
15 | * | |
16 | * @version $Revision$ $Date$ | |
17 | */ | |
18 | 0 | public class BootclasspathArtifact extends JavadocPathArtifact |
19 | implements java.io.Serializable | |
20 | { | |
21 | ||
22 | ||
23 | 0 | private String modelEncoding = "UTF-8"; |
24 | ||
25 | /** | |
26 | * Set an encoding used for reading/writing the model. | |
27 | * | |
28 | * @param modelEncoding the encoding used when reading/writing the model. | |
29 | */ | |
30 | public void setModelEncoding( String modelEncoding ) | |
31 | { | |
32 | 0 | this.modelEncoding = modelEncoding; |
33 | 0 | } |
34 | ||
35 | /** | |
36 | * @return the current encoding used when reading/writing this model. | |
37 | */ | |
38 | public String getModelEncoding() | |
39 | { | |
40 | 0 | return modelEncoding; |
41 | } | |
42 | } |