Patterns refactor

This commit is contained in:
Aleksey 2020-11-17 22:04:42 +03:00
parent ce8ae2e7fe
commit 14434e4028
33 changed files with 397 additions and 356 deletions

View file

@ -0,0 +1,7 @@
package ru.betterend.patterns;
public interface Patterned {
default String getModelPattern(String name) {
return null;
}
}