This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 433b8f0  Update quickstart.asciidoc
433b8f0 is described below

commit 433b8f001360f1cb987172c15837805ed85118ab
Author: Geertjan Wielenga <[email protected]>
AuthorDate: Thu Jan 17 17:06:51 2019 +0100

    Update quickstart.asciidoc
---
 .../src/content/kb/docs/java/quickstart.asciidoc   | 36 +++-------------------
 1 file changed, 5 insertions(+), 31 deletions(-)

diff --git a/netbeans.apache.org/src/content/kb/docs/java/quickstart.asciidoc 
b/netbeans.apache.org/src/content/kb/docs/java/quickstart.asciidoc
index 8c4a31f..ae5b253 100644
--- a/netbeans.apache.org/src/content/kb/docs/java/quickstart.asciidoc
+++ b/netbeans.apache.org/src/content/kb/docs/java/quickstart.asciidoc
@@ -49,7 +49,6 @@ image::images/proj-wizard-small.png[role="left", 
link="images/proj-wizard.png"]
 [start=3]
 3. In the Name and Location page of the wizard, do the following (as shown in 
the figure below):
 * In the Project Name field, type `HelloWorldApp`.
-* Leave the Use Dedicated Folder for Storing Libraries checkbox unselected.
 * In the Create Main Class field, type `helloworldapp.HelloWorldApp`.
 [.feature]
 --
@@ -62,7 +61,6 @@ The project is created and opened. You should see the 
following components:
 * Projects window: Contains a tree view of the components of the project, 
including source files, libraries that your code depends on, and so on.
 * Source Editor: Contains files, where most of your work will be done, 
currently with a file called `HelloWorldApp` open.
 * Navigator: Useful for quickly navigate between elements within the selected 
class.
-
 [.feature]
 --
 image::images/proj-opened-small.png[role="left", link="images/proj-opened.png"]
@@ -92,36 +90,12 @@ System.out.println("Hello World!");
 
 Save the change by choosing File > Save.
 
-The file should look something like the following code sample.
-
-
-[source,java]
-----
-
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
-
-package helloworldapp;
-
-/**
- *
- * @author <your name>
- */
-public class HelloWorldApp {
+The file should look as shown below.
 
-    /**
-     * @param args the command line arguments
-     */
-    public static void main(String[] args) {
-            System.out.println("Hello World!");
-    }
-
-}
-
-        
-----
+[.feature]
+--
+image::images/helloworldapp-open-small.png[role="left", 
link="images/helloworldapp-open.png"]
+--
 
 === Compiling and Running the Program
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to