@@ -10,21 +10,21 @@ public interface TemplateCons {
1010 String CONTRACT_TP_CONTENT_JAVA =
1111 "#if (${PACKAGE_NAME} != \" \" )package ${PACKAGE_NAME};#end\n " + "\n " + "import ${V};\n " + "import ${P};\n " + "import ${M};\n " + "/**\n " + " * @describe \n " +
1212 " * @author ${USER}\n " + " * @date ${DATE} ${TIME}\n " + " * \t \t \t \t \t \t \t \t - generate by MvpAutoCodePlus plugin.\n " + " */\n " + "\n " +
13- "public interface I${NAME}Contract {\n " + " interface View extends IView${ VG}{}\n " + " interface Presenter extends IPresenter ${PG}{}\n " +
14- " interface Model extends IModel ${MG}{}\n " + "}\n " ;
13+ "public interface I${NAME}Contract {\n " + " interface View extends ${VN}${ VG}{}\n " + " interface Presenter extends ${PN} ${PG}{}\n " +
14+ " interface Model extends ${MN} ${MG}{}\n " + "}\n " ;
1515 String CONTRACT_TP_CONTENT_NO_MODEL_JAVA =
1616 "#if (${PACKAGE_NAME} != \" \" )package ${PACKAGE_NAME};#end\n " + "\n " + "import ${V};\n " + "import ${P};\n " + "/**\n " + " * @describe \n " + " * @author ${USER}\n " +
1717 " * @date ${DATE} ${TIME}\n " + " * \t \t \t \t \t \t \t \t - generate by MvpAutoCodePlus plugin.\n " + " */\n " + "\n " + "public interface I${NAME}Contract {\n " +
18- " interface View extends IView${ VG}{}\n " + " interface Presenter extends IPresenter ${PG}{}\n " + "}\n " ;
18+ " interface View extends ${VN}${ VG}{}\n " + " interface Presenter extends ${PN} ${PG}{}\n " + "}\n " ;
1919
2020 String CONTRACT_TP_CONTENT_KOTLIN =
2121 "#if (${PACKAGE_NAME} != \" \" )package ${PACKAGE_NAME}#end\n " + "\n " + "import ${V}\n " + "import ${P}\n " + "import ${M}\n " + "/**\n " + " * @describe \n " +
2222 " * @author ${USER}\n " + " * @date ${DATE} ${TIME}\n " + " * \t \t \t \t \t \t \t \t - generate by MvpAutoCodePlus plugin.\n " + " */\n " + "\n " + "interface ${NAME} {\n " +
23- " interface View : IView${ VG}{}\n " + " interface Presenter : IPresenter${ PG}{}\n " + " interface Model : IModel ${MG}{}\n " + "}\n " ;
23+ " interface View : ${VN}${ VG}{}\n " + " interface Presenter : ${PN}${ PG}{}\n " + " interface Model : ${MN} ${MG}{}\n " + "}\n " ;
2424 String CONTRACT_TP_CONTENT_NO_MODEL_KOTLIN =
2525 "#if (${PACKAGE_NAME} != \" \" )package ${PACKAGE_NAME}#end\n " + "\n " + "import ${V}\n " + "import ${P}\n " + "/**\n " + " * @describe \n " + " * @author ${USER}\n " +
2626 " * @date ${DATE} ${TIME}\n " + " * \t \t \t \t \t \t \t \t - generate by MvpAutoCodePlus plugin.\n " + " */\n " + "\n " + "interface ${NAME} {\n " +
27- " interface View : IView${ VG}{}\n " + " interface Presenter : IPresenter ${PG}{}\n " + "}\n " ;
27+ " interface View : ${VN}${ VG}{}\n " + " interface Presenter : ${PN} ${PG}{}\n " + "}\n " ;
2828
2929 String COMMON_IMPL_TP_CONTENT_JAVA =
3030 "#if (${PACKAGE_NAME} != \" \" )package ${PACKAGE_NAME};#end\n " + "\n " + "import ${CONTRACT};\n " + "#if (${IMPL} != \" \" )import ${IMPL};#end\n " + "\n " + "\n " + "/**\n " +
0 commit comments