Merge pull request #12969 from ulisseslima/bael-5851_quick-fix_factory-pattern-generics
bael-5851 - quick fix - Factory Pattern with Generics in Java
This commit is contained in:
commit
0dc391445f
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.factoryGeneric;
|
package com.baeldung.factorygeneric;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.factoryGeneric;
|
package com.baeldung.factorygeneric;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.factoryGeneric;
|
package com.baeldung.factorygeneric;
|
||||||
|
|
||||||
public interface Notifier<T> {
|
public interface Notifier<T> {
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.factoryGeneric;
|
package com.baeldung.factorygeneric;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.factoryGeneric;
|
package com.baeldung.factorygeneric;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.factoryGeneric;
|
package com.baeldung.factorygeneric;
|
||||||
|
|
||||||
public class StringNotifier implements Notifier<String> {
|
public class StringNotifier implements Notifier<String> {
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package com.baeldung.factoryGeneric;
|
package com.baeldung.factorygeneric;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import static org.junit.jupiter.api.Assertions.*;
|
import static org.junit.jupiter.api.Assertions.*;
|
||||||
|
|
Loading…
Reference in New Issue