Added mozart and a project

This commit is contained in:
2025-08-11 13:51:04 +02:00
commit efd664fd2d
1131 changed files with 8175 additions and 0 deletions

View File

View File

@@ -0,0 +1,6 @@
#parse("File Header.java")
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
public @interface ${NAME} {
}

View File

@@ -0,0 +1,9 @@
#parse("File Header.java")
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
public class ${NAME} {
public static void main(String[] args) {
}
}

View File

@@ -0,0 +1,6 @@
#parse("File Header.java")
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
public enum ${NAME} {
}

View File

@@ -0,0 +1,6 @@
#parse("File Header.java")
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
public interface ${NAME} {
}

View File

@@ -0,0 +1,4 @@
#parse("File Header.java")
module #[[$MODULE_NAME$]]# {
}

View File

@@ -0,0 +1,3 @@
#parse("File Header.java")
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end