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?"

 
m
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
==  How do I load source files edited outside Eclipse? ==
 
 
 
 
 
 
 
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.
Line 15: Line 9:
 
But at least it allows for preliminary and rudimentary experimentation without
 
But at least it allows for preliminary and rudimentary experimentation without
 
writing any Eclipse plug-ins.
 
writing any Eclipse plug-ins.
 
 
 
  
 
== See Also: ==
 
== See Also: ==
 +
*[[FAQ_How_do_I_run_an_external_builder_on_my_source_files%3F]]
  
[[FAQ FAQ_How_do_I_run_an_external_builder_on_my_source_files%3F]]
+
<hr><font size=-2>This FAQ was originally published in [http://www.eclipsefaq.org Official Eclipse 3.0 FAQs]. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the [http://www.eclipse.org/legal/epl-v10.html Eclipse Public License v1.0].</font>

Latest revision as of 22:25, 29 May 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&#146;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:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top