This commit is contained in:
huangyuhui
2017-08-01 18:10:36 +08:00
parent 6dc2b36d14
commit 1410b3b5b1
236 changed files with 18466 additions and 0 deletions

12
.idea/fileTemplates/Singleton.java generated Normal file
View File

@@ -0,0 +1,12 @@
#parse("HMCL.java")
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
public class ${NAME}{
private static ${NAME} ourInstance = new ${NAME}();
public static ${NAME} getInstance() {
return ourInstance;
}
private ${NAME}() {
}
}