Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ How do I load source files edited outside Eclipse?"

Line 1: Line 1:
 
 
 
 
 
 
 
You can achieve a minimal level of Eclipse integration without writing a single
 
You can achieve a minimal level of Eclipse integration without writing a single
 
line of Eclipse-specific tooling code.
 
line of Eclipse-specific tooling code.

Revision as of 14:25, 14 March 2006

You can achieve a minimal level of Eclipse integration without writing a single line of Eclipse-specific tooling code. Add resource files to a project in your workspace. Edit and compile the source files outside Eclipse or by using the Eclipse text editor. Make sure that the files get copied into the project’s output directory, usually the bin directory. Intermittently refresh your Eclipse Navigator so that you can access the generated bytecode files. The only integration is the sharing of class files through the file system. But at least it allows for preliminary and rudimentary experimentation without writing any Eclipse plug-ins.



See Also:

FAQ_How_do_I_run_an_external_builder_on_my_source_files?

Back to the top