Files
processing4/java
Stef Tervelde 1b04f430b4 Updating Batik
Seems like Apache just straight up deleted batik 18 from this download location.
2025-05-07 14:44:36 +02:00
..
2015-02-11 00:42:05 -08:00
2025-05-07 14:44:36 +02:00
2025-03-12 09:47:46 +01:00
2025-01-09 21:45:51 +01:00
2021-10-10 11:30:24 -07:00
2024-12-14 11:00:37 +01:00
2024-12-20 18:07:16 +01:00
2024-12-23 19:00:37 +01:00

Processing Java Mode

This the Java Mode in Processing. It compiles your sketches and runs them. It is the primary mode of Processing.

Folders

  • application assets for exporting applications within the mode
  • generated generated antlr code for the mode, should be moved to a proper antlr plugin within gradle
  • libraries libraries that are available within the mode
  • lsp gradle build system for the language server protocol, in the future we should decouple the lsp from the java mode and pde and move all relevant code here. For now it can be found in src/.../lsp
  • mode legacy files for Ant
  • preprocessor the preprocessor for the mode, same deal as with the lsp, although the decoupling has mostly been done
  • src the main source code for the mode
  • test tests for the mode
  • theme assets for the mode, related to autocomplete and syntax highlighting

Future plans

  • Decouple the lsp and preprocessor from the mode and move them to their own repositories
  • Move the antlr code to a proper plugin within gradle
  • Create a gradle plugin to convert .pde file to .java files
  • Create a gradle based version of Java mode.