Is it possible to include files in java source files somehow?
Thanks.
feedback
|
|
You could of course use a preprocessor to create your source files from templates but that in general is not advisable and will create more problems than it solves. Apart from that: no, Eclipse does not offer a way to do that. Including files in the source code is not The Java Way™. :) | |||
|
feedback
|
|
Not really, java doesn't work that way. If you need code from another class, you use
which will search for the class in your class path (that includes the currect directory). If you have jar-files that contains the classes you will have to add them to your class path with an argument to the java inteprentor
In unix : is used to separate paths, in windows i think it is ;. | |||
|
feedback
|
|
You could use an aspect to weave in intertype declarations and/or use pointcuts to weave advice to method declarations. This is not equivalent to #include, but the effects can be similar. See this AspectJ tutorial for a starting point and the quick reference sheet for more details. | |||
|
feedback
|