8000 Adding support for mapping of reference attributes and lists; Removin… · mapstruct/mapstruct@7fc0878 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7fc0878

Browse files
committed
Adding support for mapping of reference attributes and lists; Removing Dozer-based implementation
1 parent 873e091 commit 7fc0878

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+909
-951
lines changed

core/etc/license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
1+
Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

core/src/main/java/de/moapa/maple/Mapper.java

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
2+
* Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -29,12 +29,4 @@
2929
@Target(ElementType.TYPE)
3030
@Retention(RetentionPolicy.SOURCE)
3131
public @interface Mapper {
32-
33-
/**
34-
* Specifies the type of the mapper implementation to be generated.
35-
* Currently supported values are {@code native} and {@code dozer}.
36-
*
37-
* @return The type of the mapper implementation to be generated.
38-
*/
39-
String value() default "";
4032
}

core/src/main/java/de/moapa/maple/Mappers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
2+
* Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

core/src/main/java/de/moapa/maple/Mapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
2+
* Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

core/src/main/java/de/moapa/maple/Mappings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
2+
* Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

core/src/main/java/de/moapa/maple/converter/Converter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
2+
* Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

core/src/main/java/de/moapa/maple/converter/NoOpConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
2+
* Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

core/src/test/java/de/moapa/maple/MappersTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
2+
* Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

core/src/test/java/de/moapa/maple/test/model/Foo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
2+
* Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

core/src/test/java/de/moapa/maple/test/model/FooImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2012 Gunnar Morling (http://www.gunnarmorling.de/)
2+
* Copyright 2012-2013 Gunnar Morling (http://www.gunnarmorling.de/)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)
0