blob: 43fb154d87adbd8dcd39ebccc30c8c5a0f84174e [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
<title>Creating an Eclipse Java project</title>
</head>
<body>
<h2>Creating an Eclipse Java project</h2>
<p>
The steps below outline how to create a Java project using many of the default
settings to make it easy to get started.
</p>
<p>
<ul>
<li>
From the main workbench window, click File > New > Project. The New Project
wizard opens. <br/><br/>
</li>
<li>
Select Java Project and click Next.<br/><br/>
</li>
<li>
In the Project name field, type a name for your new Java project, like
myJavaProject. <br/><br/>
</li>
<li>
For Location, choose <b>Create project in workspace</b> and for the Project
Layout, select <b>Use project folder as root for sources and class files</b>.
<br/>
<br/>
</li>
<li>
Click the Next button, then Finish.
<br/>
<br/>
</li>
<li>
You may be prompted about switching to the Java Perspective. Answer Yes to
this question.
<br/>
<br/>
</li>
<li>
The Package Explorer view now shows your new Java project.
<br/>
<br/>
</li>
</ul>
</p>
</body>
</html>