1 | |
package com.simpligility.maven.plugins.androidndk.configuration; |
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | 0 | public class AdditionallyBuiltModule |
7 | |
{ |
8 | |
String name; |
9 | |
String fileName; |
10 | |
String type; |
11 | |
String classifier; |
12 | |
|
13 | |
public String getName() |
14 | |
{ |
15 | 0 | return name; |
16 | |
} |
17 | |
|
18 | |
public void setName( final String name ) |
19 | |
{ |
20 | 0 | this.name = name; |
21 | 0 | } |
22 | |
|
23 | |
public String getClassifier() |
24 | |
{ |
25 | 0 | return classifier; |
26 | |
} |
27 | |
|
28 | |
public void setClassifier( final String classifier ) |
29 | |
{ |
30 | 0 | this.classifier = classifier; |
31 | 0 | } |
32 | |
|
33 | |
public String getFileName() |
34 | |
{ |
35 | 0 | return fileName; |
36 | |
} |
37 | |
|
38 | |
public void setFileName( final String fileName ) |
39 | |
{ |
40 | 0 | this.fileName = fileName; |
41 | 0 | } |
42 | |
|
43 | |
public String getType() |
44 | |
{ |
45 | 0 | return type; |
46 | |
} |
47 | |
|
48 | |
public void setType( final String type ) |
49 | |
{ |
50 | 0 | this.type = type; |
51 | 0 | } |
52 | |
} |