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:
2019-02-08 22:25:59 -06:00
commit cfa0a49048
29 changed files with 11666 additions and 0 deletions

View 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}() {
}
}

View 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 {
}

View 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 {
}

View 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 {
}

View 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 {
}