Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'releng/org.eclipse.cdt/cheatsheets/HelloWorld.xml')
-rw-r--r--releng/org.eclipse.cdt/cheatsheets/HelloWorld.xml73
1 files changed, 73 insertions, 0 deletions
diff --git a/releng/org.eclipse.cdt/cheatsheets/HelloWorld.xml b/releng/org.eclipse.cdt/cheatsheets/HelloWorld.xml
new file mode 100644
index 00000000000..f9dca6103f5
--- /dev/null
+++ b/releng/org.eclipse.cdt/cheatsheets/HelloWorld.xml
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<cheatsheet title="Simple C++ Application">
+
+ <intro
+ href="/org.eclipse.ui.cheatsheets.doc/tasks/tcheatst.htm">
+ <description>
+Welcome to the Hello, World Java tutorial.
+It will help you build the famous "hello world" application and try it out. You will create a java project, and a java class that will print "hello world" in the console when run.
+Let's get started!
+ </description>
+</intro>
+
+ <item
+ href="/org.eclipse.platform.doc.user/concepts/concepts-4.htm"
+ title="Open the Java Perspective">
+ <action
+ pluginId="org.eclipse.ui.cheatsheets"
+ class="org.eclipse.ui.internal.cheatsheets.actions.OpenPerspective"
+ param1="org.eclipse.jdt.ui.JavaPerspective"/>
+ <description>
+Select Window-&gt;Open Perspective-&gt;Java in the menubar at the top of the workbench.
+This step changes the perspective to set up the Eclipse workbench for Java development.
+You can click the "Click to Perform" button to have the "Java" perspective opened automatically.
+ </description>
+</item>
+
+ <item
+ href="/org.eclipse.jdt.doc.user/tasks/tasks-12.htm"
+ title="Create a java project"
+ skip="true">
+ <action
+ pluginId="org.eclipse.jdt.ui"
+ class="org.eclipse.jdt.internal.ui.wizards.OpenProjectWizardAction"/>
+ <description>
+The first thing you will need is a Java Project.
+If you already have a java project in your workspace that you would like to use, you may skip this step by pressing the "skip" button. If not, you may press the "click to perform" button to spawn the New Java Project wizard.
+ </description>
+</item>
+
+ <item
+ href="/org.eclipse.jdt.doc.user/gettingStarted/qs-9.htm"
+ title="Create your HelloWorld class">
+ <action
+ pluginId="org.eclipse.jdt.ui"
+ class="org.eclipse.jdt.internal.ui.wizards.OpenClassWizardAction"/>
+ <description>
+You should now have a Java Project in your workspace.
+The next step in building your hello world application is to create your HelloWorld class. You may do this by either pressing the "click to perform" button below to launch the New Java Class wizard, or you may use the Eclipse tools to do it, by using the File-&gt;New-&gt;Class action.
+When you use the wizard, make sure that you specify that you would like to have a "main" method added. Name your class "HelloWorld". If you use the button below it will be pre-filled for you.
+If you do not use the "click to perform" button below, press the "click when done" button to advance to the next step in building your hello world app.
+ </description>
+</item>
+
+ <item
+ href="/org.eclipse.jdt.doc.user/tasks/tasks-54.htm"
+ title="Add a System.out.println line in your main method">
+ <description>
+Now that you have your HelloWorld class,
+In the "public static void main" method, add the following statement: System.out.println("Hello world!"); and save your changes. Press the "click when done" button below when finished.
+ </description>
+</item>
+
+ <item
+ href="/org.eclipse.jdt.doc.user/gettingStarted/qs-12.htm"
+ title="Test your application">
+ <description>
+The final moment has arrived! You are ready to test your HelloWorld class.
+Select your class in the package explorer (the java tree view on the left of the workbench window in the Java Perspective.). When your HelloWorld class is selected, press the down arrow beside the running man icon in the toolbar and select Run As-&gt;application. Hello world! should be printed in your "Console" view.
+Congratulations! You have built your hello world application and it worked!
+ </description>
+</item>
+
+</cheatsheet>

Back to the top