AI-3.3 <Devcs@DESKTOP-GP4CQC5 Create ide.general.xml, git.xml, _@user_Default.icls, project.default.xml, Singleton.java, Enum.java, Interface.java, terminal.xml, Default.xml, androidStudioFirstRun.xml, ui.lnf.xml, filetypes.xml, _@user_Material Lighter.icls, colors.scheme.xml, _@user_Darcula.icls, github_settings.xml, AnnotationType.java, laf.xml, _@user_Material Darker.icls, material_custom_theme.xml, Class.java, jdk.table.xml, path.macros.xml, material_theme.xml, vcs.xml, editor.codeinsight.xml, _@user_Material One Dark.icls, editor.xml, debugger.xml
This commit is contained in:
15
fileTemplates/Singleton.java
Normal file
15
fileTemplates/Singleton.java
Normal file
@@ -0,0 +1,15 @@
|
||||
#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
|
||||
|
||||
#if (${IMPORT_BLOCK} != "")${IMPORT_BLOCK}
|
||||
#end
|
||||
#parse("File Header.java")
|
||||
#if (${VISIBILITY} == "PUBLIC")public #end class ${NAME} #if (${SUPERCLASS} != "")extends ${SUPERCLASS} #end #if (${INTERFACES} != "")implements ${INTERFACES} #end {
|
||||
private static final ${NAME} ourInstance = new ${NAME}();
|
||||
|
||||
#if (${VISIBILITY} == "PUBLIC")public #end static ${NAME} getInstance() {
|
||||
return ourInstance;
|
||||
}
|
||||
|
||||
private ${NAME}() {
|
||||
}
|
||||
}
|
||||
7
fileTemplates/internal/AnnotationType.java
Normal file
7
fileTemplates/internal/AnnotationType.java
Normal file
@@ -0,0 +1,7 @@
|
||||
#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
|
||||
|
||||
#if (${IMPORT_BLOCK} != "")${IMPORT_BLOCK}
|
||||
#end
|
||||
#parse("File Header.java")
|
||||
#if (${VISIBILITY} == "PUBLIC")public #end @interface ${NAME} #if (${INTERFACES} != "")extends ${INTERFACES} #end {
|
||||
}
|
||||
7
fileTemplates/internal/Class.java
Normal file
7
fileTemplates/internal/Class.java
Normal file
@@ -0,0 +1,7 @@
|
||||
#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
|
||||
|
||||
#if (${IMPORT_BLOCK} != "")${IMPORT_BLOCK}
|
||||
#end
|
||||
#parse("File Header.java")
|
||||
#if (${VISIBILITY} == "PUBLIC")public #end #if (${ABSTRACT} == "TRUE")abstract #end #if (${FINAL} == "TRUE")final #end class ${NAME} #if (${SUPERCLASS} != "")extends ${SUPERCLASS} #end #if (${INTERFACES} != "")implements ${INTERFACES} #end {
|
||||
}
|
||||
7
fileTemplates/internal/Enum.java
Normal file
7
fileTemplates/internal/Enum.java
Normal file
@@ -0,0 +1,7 @@
|
||||
#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
|
||||
|
||||
#if (${IMPORT_BLOCK} != "")${IMPORT_BLOCK}
|
||||
#end
|
||||
#parse("File Header.java")
|
||||
#if (${VISIBILITY} == "PUBLIC")public #end enum ${NAME} #if (${INTERFACES} != "")implements ${INTERFACES} #end {
|
||||
}
|
||||
7
fileTemplates/internal/Interface.java
Normal file
7
fileTemplates/internal/Interface.java
Normal file
@@ -0,0 +1,7 @@
|
||||
#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
|
||||
|
||||
#if (${IMPORT_BLOCK} != "")${IMPORT_BLOCK}
|
||||
#end
|
||||
#parse("File Header.java")
|
||||
#if (${VISIBILITY} == "PUBLIC")public #end interface ${NAME} #if (${INTERFACES} != "")extends ${INTERFACES} #end {
|
||||
}
|
||||
Reference in New Issue
Block a user