Compare commits
3 Commits
13249271fb
...
16597aebd2
Author | SHA1 | Date | |
---|---|---|---|
16597aebd2 | |||
c50b0f6fb4 | |||
caae59207f |
2
pom.xml
2
pom.xml
@ -9,7 +9,7 @@
|
||||
|
||||
<groupId>dev.struchkov.haiti.utils</groupId>
|
||||
<artifactId>haiti-utils-field-constants</artifactId>
|
||||
<version>0.0.11-SNAPSHOT</version>
|
||||
<version>0.0.12-SNAPSHOT</version>
|
||||
|
||||
<name>Haiti Field Name Constants Utils</name>
|
||||
<description>Generating class field names</description>
|
||||
|
@ -38,7 +38,7 @@ public final class CreatorClassSimpleMode {
|
||||
out.println(format("public class {0} '{'", classDto.getNewClassName()));
|
||||
out.println();
|
||||
out.println(format(" public static final String CLASS_NAME = \"{0}\";", classDto.getOldClassName()));
|
||||
out.println(format(" public static final String PACKAGE_AND_CLASS_NAME = \"{0}\";", classDto + classDto.getClassPackage() + "." + classDto.getOldClassName()));
|
||||
out.println(format(" public static final String PACKAGE_AND_CLASS_NAME = \"{0}\";", classDto.getClassPackage() + "." + classDto.getOldClassName()));
|
||||
out.println();
|
||||
generateSimpleNames(classDto.getSimpleFields(), out);
|
||||
out.println("}");
|
||||
|
Loading…
Reference in New Issue
Block a user