-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathBaseMapper.java
More file actions
34 lines (27 loc) · 810 Bytes
/
BaseMapper.java
File metadata and controls
34 lines (27 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* Copyright MapStruct Authors.
*
* Licensed under the Apache License version 2.0, available at https://www.apache.org/licenses/LICENSE-2.0
*/
package org.mapstruct.ap.test.complex;
import org.mapstruct.Mapper;
import org.mapstruct.Named;
@Mapper
public abstract class BaseMapper {
@Named("superClassModifierPackagePrivate")
String superClassModifierPackagePrivate(String value) {
return "";
}
@Named("superClassModifierPrivate")
private String superClassModifierPrivate(String value) {
return "";
}
@Named("superClassModifierProtected")
protected String superClassModifierProtected(String value) {
return "";
}
@Named("superClassModifierPublic")
public String superClassModifierPublic(String value) {
return "";
}
}