Files
snippets/jspecify.code-snippets
2025-08-04 09:29:27 +08:00

31 lines
762 B
Plaintext

{
"Import all JSpecify annotations": {
"scope": "java",
"prefix": "jspecify-import-all",
"body": [
"import org.jspecify.annotations.*;",
""
],
"description": "import all JSpecify annotations"
},
"Import JSpecify annotations": {
"scope": "java",
"prefix": "jspecify-import",
"body": [
"import org.jspecify.annotations.Nullable;",
"import org.jspecify.annotations.NonNull;",
""
],
"description": "import JSpecify annotations"
},
"Import JSpecify annotations (Nullable)": {
"scope": "java",
"prefix": "jspecify-import-nullable",
"body": [
"import org.jspecify.annotations.Nullable;",
""
],
"description": "import JSpecify annotations (nullable)"
},
}