Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I don't know any tool to do this. You may need to convert by hand.</p> <p>Let's check the netbeans project structure.</p> <p>Netbeans generates a <code>build.xml</code> for the project (at the root folder of the project), however, this build file doesn't contain any targets. All the generated targets are placed in <code>nbproject/build-impl.xml</code>. By doing this, the generated content and the content that may be added later by the programmer can be seperated.</p> <p>So check build-impl.xml then.</p> <p>It contains the following sections:</p> <blockquote> <ul> <li>initialization</li> <li>compilation</li> <li>jar</li> <li>execution</li> <li>debugging</li> <li>javadoc</li> <li>junit compilation</li> <li>junit execution</li> <li>junit debugging</li> <li>applet</li> <li>cleanup</li> </ul> </blockquote> <p>In the initialization part, the targets inits many things for the build, including many macrodefs. You may see things like <code>&lt;j2seproject1:java classname="${run.class}"/&gt;</code>, they are not netbeans-only tasks. They are actually macros defined in the initialization section of the build file.</p> <p>So, actually, you can run the build without netbeans installed. However, to use it in eclipse, you may need to do a cleanup and some modifications. You may need to check all the properties defined in <code>nbproject/project.properties</code>; you may need to delete other netbeans project files that will never be used after converted to eclipse project.</p> <p>Or, maybe, just creating an eclipse project from existing source could be much easier.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload