In Visual Studio, I used to define a structure in an XSD file and add a special attribute to it that would make it dynamically compile and be used for use with intellisense in other C # files in the application. I'm not sure what the term is, maybe "dynamic code generation".
I am trying to do the same in Java using the Eclipse IDE. Basically, what I'm looking for is a tool that will allow me to specify some kind of template and generate Java code from it in a "hot folder", which will allow me to complete the code in other static Java files.
Does anyone know of a solution for this? I know this is possible in Visual Studio, but I cannot find anything for Eclipse.
Well, thatโs what I want to do.
Step 1. I create a folder called templates Step 2. I create a file HelloWord.ibes Step 3. Code is automatically generated in my src folder HelloWorld.java
I want this to be easy to do in eclipse.
source
share