commit cfa0a490487ff3f3855378ddf66a754a9a619b35 Author: Thomas Atkins Date: Fri Feb 8 22:25:59 2019 -0600 AI-3.3 + + + \ No newline at end of file diff --git a/_windows/laf.xml b/_windows/laf.xml new file mode 100644 index 0000000..c1f98d9 --- /dev/null +++ b/_windows/laf.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/_windows/path.macros.xml b/_windows/path.macros.xml new file mode 100644 index 0000000..61227d8 --- /dev/null +++ b/_windows/path.macros.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/androidStudioFirstRun.xml b/androidStudioFirstRun.xml new file mode 100644 index 0000000..8d43076 --- /dev/null +++ b/androidStudioFirstRun.xml @@ -0,0 +1,8 @@ + + + 1 + + + 3.3.0rc20 + + \ No newline at end of file diff --git a/codestyles/Default.xml b/codestyles/Default.xml new file mode 100644 index 0000000..f22cc6f --- /dev/null +++ b/codestyles/Default.xml @@ -0,0 +1,169 @@ + + \ No newline at end of file diff --git a/colors.scheme.xml b/colors.scheme.xml new file mode 100644 index 0000000..3d27351 --- /dev/null +++ b/colors.scheme.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/colors/_@user_Darcula.icls b/colors/_@user_Darcula.icls new file mode 100644 index 0000000..86b719e --- /dev/null +++ b/colors/_@user_Darcula.icls @@ -0,0 +1,28 @@ + + + 2019-01-31T19:46:16 + AndroidStudio + 3.3.0.20 + 2019-01-31T20:04:22 + Darcula + + + + \ No newline at end of file diff --git a/colors/_@user_Default.icls b/colors/_@user_Default.icls new file mode 100644 index 0000000..527b0e0 --- /dev/null +++ b/colors/_@user_Default.icls @@ -0,0 +1,35 @@ + + + 2019-01-31T19:12:34 + AndroidStudio + 3.3.0.20 + 2019-01-31T20:05:59 + Default + + + + \ No newline at end of file diff --git a/colors/_@user_Material Darker.icls b/colors/_@user_Material Darker.icls new file mode 100644 index 0000000..0227459 --- /dev/null +++ b/colors/_@user_Material Darker.icls @@ -0,0 +1,3828 @@ + + \ No newline at end of file diff --git a/colors/_@user_Material Lighter.icls b/colors/_@user_Material Lighter.icls new file mode 100644 index 0000000..6ba3365 --- /dev/null +++ b/colors/_@user_Material Lighter.icls @@ -0,0 +1,3436 @@ + + \ No newline at end of file diff --git a/colors/_@user_Material One Dark.icls b/colors/_@user_Material One Dark.icls new file mode 100644 index 0000000..b26e936 --- /dev/null +++ b/colors/_@user_Material One Dark.icls @@ -0,0 +1,3807 @@ + + \ No newline at end of file diff --git a/debugger.xml b/debugger.xml new file mode 100644 index 0000000..a0af6fc --- /dev/null +++ b/debugger.xml @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/editor.codeinsight.xml b/editor.codeinsight.xml new file mode 100644 index 0000000..f02a81c --- /dev/null +++ b/editor.codeinsight.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/editor.xml b/editor.xml new file mode 100644 index 0000000..b45a920 --- /dev/null +++ b/editor.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/fileTemplates/Singleton.java b/fileTemplates/Singleton.java new file mode 100644 index 0000000..8405b14 --- /dev/null +++ b/fileTemplates/Singleton.java @@ -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}() { + } +} diff --git a/fileTemplates/internal/AnnotationType.java b/fileTemplates/internal/AnnotationType.java new file mode 100644 index 0000000..cad96ed --- /dev/null +++ b/fileTemplates/internal/AnnotationType.java @@ -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 { +} diff --git a/fileTemplates/internal/Class.java b/fileTemplates/internal/Class.java new file mode 100644 index 0000000..7fa3e2d --- /dev/null +++ b/fileTemplates/internal/Class.java @@ -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 { +} diff --git a/fileTemplates/internal/Enum.java b/fileTemplates/internal/Enum.java new file mode 100644 index 0000000..6e8b5c1 --- /dev/null +++ b/fileTemplates/internal/Enum.java @@ -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 { +} diff --git a/fileTemplates/internal/Interface.java b/fileTemplates/internal/Interface.java new file mode 100644 index 0000000..ac9a67a --- /dev/null +++ b/fileTemplates/internal/Interface.java @@ -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 { +} diff --git a/filetypes.xml b/filetypes.xml new file mode 100644 index 0000000..796cd2e --- /dev/null +++ b/filetypes.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/github_settings.xml b/github_settings.xml new file mode 100644 index 0000000..0e4cecb --- /dev/null +++ b/github_settings.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/ide.general.xml b/ide.general.xml new file mode 100644 index 0000000..e380ee0 --- /dev/null +++ b/ide.general.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/jdk.table.xml b/jdk.table.xml new file mode 100644 index 0000000..a8f9c73 --- /dev/null +++ b/jdk.table.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/material_custom_theme.xml b/material_custom_theme.xml new file mode 100644 index 0000000..5959436 --- /dev/null +++ b/material_custom_theme.xml @@ -0,0 +1,14 @@ + + + + \ No newline at end of file diff --git a/material_theme.xml b/material_theme.xml new file mode 100644 index 0000000..7c32d98 --- /dev/null +++ b/material_theme.xml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file diff --git a/project.default.xml b/project.default.xml new file mode 100644 index 0000000..75c0053 --- /dev/null +++ b/project.default.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + 1.8 + + + + + + + + + + \ No newline at end of file diff --git a/terminal.xml b/terminal.xml new file mode 100644 index 0000000..044f839 --- /dev/null +++ b/terminal.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/ui.lnf.xml b/ui.lnf.xml new file mode 100644 index 0000000..73792a4 --- /dev/null +++ b/ui.lnf.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/vcs.xml b/vcs.xml new file mode 100644 index 0000000..d993b8c --- /dev/null +++ b/vcs.xml @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file