Reference Card Netbeans Java

  • Uploaded by: VTR Ravi Kumar
  • 0
  • 0
  • April 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Reference Card Netbeans Java as PDF for free.

More details

  • Words: 4,723
  • Pages: 6
Brought to you by...

Get More Refcardz! Visit refcardz.com

#14

CONTENTS INCLUDE: n

About NetBeans IDE

n

Java Editor Overview

NetBeans IDE Java Quick Start Tutorial n

Updated for NetBeans 6.5

Keyboard Shortcuts and Code Templates

NetBeans IDE Java Editor

n

n

By Geertjan Wielenga and Patrick Keegan

Hot Tips and more...

ABOUT NETBEANS IDE The NetBeans IDE has seen adoption snowballing over the past years, particularly with the introduction of a completely new, rewritten, slick Java editor. You’ll find this reference card helpful if you want to get as much out of the Java editor as its authors intended when creating it. It lists all the keyboard shortcuts in

carefully thought out categories and it provides a thorough exposition of optimal handling of Java code in the editor, covering viewing, navigation, source handling, and refactoring. Get NetBeans IDE: http://www.netbeans.org/downloads

Java Editor Overview

NetBeans IDE Java Editor

www.dzone.com

Buttons for the most frequently used actions, such as comment/ uncomment.

Sidebar indicators tell you, at a glance, whether or not a file has errors/warnings. Right margin, set to 80px by default, can easily be changed in the Options window (under Tools).

Click on lightbulbs for tips (Alt-Enter).

Error underlinings in red, by default.

Right-click inside the editor to produce a list of menu items, for refactoring and more.

Common colors for common syntax elements, which can be modified in the Options window.

Error marks in the right sidebar can be clicked to jump to the line in which the error/warning occurs.

What’s New for Java in NetBeans IDE 6.5

NetBeans IDE 6.5 is the

The following features are new in NetBeans IDE 6.5 and can be of particular use to you in the context of the Java editor. Enhanced Java Web Start Support

Right-click a project, choose Properties, and you can configure applets to be deployed via Java Web Start on JDK 6 Update 10 and above.

Javadoc Analyzer

Changes in your code mean changes in your Javadoc. Choose Tools | Analyze Javadoc and the Javadoc will be updated according to your code changes.

Groovy Support

Mix and match Groovy and Java for the first time in NetBeans IDE 6.5.

Quick Search

Know about an action but not how to invoke it? Click Ctrl-I and the cursor lands in the text field in the top right of the editor, where you can type a keyword (such as ‘format’) and then related items appear.

Eclipse Project Import and Synchronization

Enhanced feature in 6.5, letting you resynchronize your work in the IDE to its original Eclipse project. Ideal for teams using multiple IDEs simultaneously.

DZone, Inc.

latest release of Sun’s award-winning open-source IDE that enables developers to rapidly create Web, enterprise, desktop, and mobile applications with Java, C/C++, JavaScript, Ruby, Groovy and PHP.

|

www.dzone.com

2

NetBeans IDE Java Editor

tech facts at your fingertips

Navigating through Source Code

NetBeans IDE Java Quick Start Tutorial This tutorial provides a very simple and quick introduction to the NetBeans IDE workflow by walking you through the creation of a simple “Hello World” Java console application. Once you are done with this tutorial, you will have a general knowledge of how to create, build, and run applications in the IDE. To follow this tutorial, you need the following software and resources: Software or Resource

Version Required

NetBeans IDE

Version 6.5, Version 6.1 or Version 6.0

Java Developer Kit (JDK)

Version 5 or higher

1. Start NetBeans IDE. In the IDE, choose File > New Project (Ctrl-Shift-N). 2. In the New Project wizard, expand the Java category and select Java Application. Then click Next.

Ctrl-O/Alt-Shift-O

Go to type/file

Ctrl-Shift-T

Go to JUnit test

Alt-O

Go to source

Ctrl-B

Go to declaration

Ctrl-G

Go to line

Ctrl-Shift-M

Toggle add/remove bookmark

Ctrl-Shift-Period/Comma

Next/previous bookmark

Ctrl-Period/Comma

Next/previous usage/compile error

Ctrl-Shift-1/2/3

Select in Projects/Files/Favorites

Ctrl-[

Move caret to matching bracket

Ctrl-K/Ctrl-Shift K

Next/previous word match

Alt-Left/Alt-Right/Ctrl-Q

Go backward/forward/to last edit

Compiling, Testing, and Running

3. In the Name and Location page of the wizard, type "HelloWorldApp" in Project Name and type "helloworldapp.HelloWorldApp" in the Create Main Class field. Then Click finish.

F9

Compile package/ file

F11

Build main project

4. Because you have left the Create Main Class checkbox selected in the New Project wizard, the IDE has created a skeleton class for you. You can add the "HelloWorld!" message to the skeleton code by replacing the line:

Shift-F11

Clean & build main project

Ctrl-Q

Set request parameters

Ctrl-Shift-U

Create JUnit test



Ctrl-F6/Alt-F6

Run JUnit test on file/project

F6/Shift-F6

Run main project/file



// TODO code application logic here

with the line:



System.out.println("Hello World!");

Debugging

5. From the IDE’s menu bar, choose Run > Run Main Project (F6). The Output window should show you the "HelloWorld!" message.

Ctrl-F5

Start debugging main project

Ctrl-Shift-F5

Start debugging current file

Ctrl-Shift-F6

Start debugging test for file (JUnit)

Shift-F5/F5

Stop/Continue debugging session

Finding, Searching, and Replacing

F4

Run to cursor location in file

Ctrl-F3

Search word at insert point

F7/F8

Step into/over

F3/Shift-F3

Find next/previous in file

Ctrl-F7

Step out

Ctrl-F/H

Find/Replace in file

Ctrl-Alt-Up

Go to called method

Alt-F7

Find usages

Ctrl-Alt-Down

Go to calling method

Ctrl-Shift-P

Find/replace in projects

Ctrl-F9

Evaluate expression

Alt-Shift-U

Find usages results

Ctrl-F8

Toggle breakpoint

Alt-Shift-H

Turn off search result highlights

Ctrl-R

Rename

Ctrl-Shift-F8

New breakpoint

Ctrl-U, then U

Convert selection to uppercase

Ctrl-Shift-F7

New watch

Ctrl-U, then L

Convert selection to lowercase

Ctrl-U, then S

Toggle case of selection

Alt-Shift-V

Paste formatted

KEYBOARD SHORTCUTS & CODE TEMPLATES

Coding in Java Alt-Insert

Generate code

Ctrl-Shift-I

Fix all class imports

Opening and Toggling Between Views

Alt-Shift-I

Fix selected class’s import

Ctrl-Tab (Ctrl-`)

Toggle between open documents

Alt-Shift-F

Format selection

Shift-Escape

Maximize window (toggle)

Alt-Shift Left/Right/Up/Down

Shift lines left/right/up/down

Ctrl-F4/Ctrl-W

Close currently selected window

Ctrl-Shift-Up/D

Copy lines up/down

Ctrl-Shift-F4

Close all windows

Ctrl/Alt-F12

Inspect members/hierarchy

Shift-F10

Open contextual menu

Ctrl-/

Add/remove comment lines

Alt-Shift-D

Undock window

Ctrl-E

Delete current line

DZone, Inc.

|

www.dzone.com

3

NetBeans IDE Java Editor

tech facts at your fingertips

Java Editor Code Templates, continued

Keyboard Shortcuts & Code Templates, continued

St

String

ab

abstract

bo

boolean

br

break

ca

catch (

cl

class

Description

cn

continue

Enables you to change the name of a class, variable, or method to something more meaningful. In addition, it updates all source code in your project to reference the element by its new name.

df

default:

dowhile

do { } while (condition);

eq

equals

Introduce Variable, Constant, Field, or Method

Enables you to generate a statement based on the selected code and replace that block of code with a call to the statement.

ex

extends

fa

false

Change Method Parameters

Enables you to add parameters to a method and change the access modifier.

fi

final

fl

float

forc

for (Iterator it = collection.iterator(); it.hasNext( );) { Object elem = (Object) it.next( ); }

fore

for (Object elem : iterable) { }

fori

for (int i = 0; i < arr.length; i++) { }

fy

finally

ie

interface

ifelse

if (condition){ }else { }

im

implements

iof

instanceof

ir

import

Refactoring This table provides short descriptions of the refactoring operations that are available in the IDE, mostly from under the Refactoring menu and within the Java editor itself, when you right-click within it. Refactoring Operation Rename

Encapsulate Fields

Generates a getter method and and a setter method for a field and optionally updates all referencing code to access the field using the getter and setter methods.

Pull Up

Moves methods and fields to a class that their current class inherits from.

Push Down

Moves inner classes, methods, and fields to all subclasses of their current class.

Move Class

Moves a class to another package or into another class. In addition, all source code in your project is updated to reference the class in its new location.

Copy Class

Copies a class to the same or a different package.

Move Inner to Outer Level

Moves an inner class one level up in hierarchy.

Convert Anonymous Class to Inner

Converts an anonymous class to an inner class that contains a name and constructor. The anonymous inner class is replaced with a call to the new inner class.

le

length

newo

Object name = new Object(args);

pe

protected

Creates a new interface from the selected public non-static methods in a class or interface.

pr

private

psf

private static final

psfb

private static final boolean

psfi

private static final int

psfs

private static final String

pst

printStackTrace();

psvm

public static void main(String[ ] args){ }

pu

public

re

return

serr

System.err.println ("|");

sout

System.out.println ("|");

st

static

sw

switch (

sy

synchronized

tds

Thread.dumpStack();

th

throws

trycatch

try {} catch (Exception e) {}

tw

throw

twn

throw new

wh

while (

whileit

while (it.hasNext()) { Object elem = (Object) it.next(); }

Extract Interface

Extract Superclass

Creates a new abstract class, changes the current class to extend the new class, and moves the selected methods and fields to the new class.

Use Supertype Where Possible

Changes code that references the selected class (or other type) to instead use a supertype of that type.

Safely Delete

Checks for references to a code element and then automatically deletes that element if no other code references it.

When typing in the Source Editor, you can generate the text in the right-column of the following list by typing the abbreviation that is listed in the left-column and then pressing Tab.

Java Editor Code Templates En

Enumeration

Ex

Exception

Ob

Object

Psf

public static final

Psfb

public static final boolean

Psfi

public static final int

Psfs

public static final String

DZone, Inc.

|

www.dzone.com

4

NetBeans Published on NetBeans Zone (http://netbeans.dzone.com)

tech facts at your fingertips

IDE Java Editor

10 Handy Editor Shortcuts in NetBeans IDE 6.0

10 Handy Editor Shortcuts, continued

Mac OS Keyboard Shortcuts

By geertjan

10 Handy Editor Shortcuts in NetBeans IDE 6.0 Created 2008/01/16 - 10:13pm

In most cases, working with the IDE on the Mac is no different from working on other operating systems. Two significant differences do exist, however. Firstly, the Options window on the Mac is found under NetBeans > Preferences. Secondly, the About box is under NetBeans > About.

http://netbeans.dzone.com/prin

1. Move/copy up/down. Press Ctrl-Shift-Up and the current The following are some of the many cool NetBeans IDE 6.0 keyboard shortcuts that no programmer selection to the linesthey're rightthere. above the current in 6.0, some were will be able toisdocopied without, once you know Not all of these are new Published onbut NetBeans Zone there before, deserve be (http://netbeans.dzone.com) highlighted because often they're overlooked. selection. Press Alttoinstead of Ctrl and it is moved instead 1. Move/copy up/down. Press Ctrl-Shift-Up current selection is of Press Editor Down instead ofand Uptheand the lines ofcopied codeto the lines right 10copied. Handy NetBeans above the current selection. Press Alt Shortcuts instead of Ctrl and it isin moved instead of copied. IDE Press Down will beof copied thewill current selection, as below: instead Up and thebelow lines of code be copied below the current selection, as below:

6.0

Scrolling and Selecting

By geertjan Created 2008/01/16 - 10:13pm

Keys

Action

Cmd-[

Moves the insertion point to the highlighted matching bracket. Note that this shortcut only works when the insertion point is located immediately after the opening bracket.

Cmd-Shift-[

Selects the block between a pair of brackets. Note that this shortcut only works when the insertion point is located immediately after either the opening or closing bracket.

Ctrl-G

Jumps to any specified line.

Cmd-A

Selects all text in the file.

The following are some of the many cool NetBeans IDE 6.0 keyboard shortcuts that no programmer will be able to do without, once you know they're there. Not all of these are new in 6.0, some were there before, but deserve to be highlighted because often they're overlooked. 1. Move/copy up/down. Press Ctrl-Shift-Up and the current selection is copied to the lines right above the current selection. Press Alt instead of Ctrl and it is moved instead of copied. Press Down instead of Up and the lines of code will be copied below the current selection, as below: 2. Capture inner/outer syntactic element. Each time you press Alt-Shift-Period, the selection expands to a successively widersyntactic syntactic element. For example, below oneyou statement 2. Capture inner/outer element. Each time was selected, the key combination Alt-Shift-Period was pressed, and then the complete content of the surrounding press Alt-Shift-Period, the selection expands to a succes- block statement was shown to be selected. The selection expands from the current statement to surrounding block statements to the surrounding method and, from there, to the surrounding class sively wider syntacticnarrow element. For example, below one of and further. To successively the selection, press Alt-Shift-Comma, instead Alt-Shift-Period. statement was selected, the key combination Alt-Shift-Period

Code Folding Keys

Action

Cmd-Minus (-)

Collapses the block of code in which the insertion point is currently located.

Cmd-Plus (+)

Expands the block of code which is adjacent to the insertion point.

Cmd-Shift-Minus (-)

Collapses all blocks of code in the current file.

Cmd-Shift-Plus (+)

Expands all blocks of code in the current file.



was pressed, and then the complete content of the surrounding block statement was shown to be selected. The selection expands from the current statement to 2. Capture inner/outer syntactic element. Each time you press Alt-Shift-Period, the selection expands to a successively syntactic element. example, below method one statement surrounding block wider statements to theFor surrounding was selected, the key combination Alt-Shift-Period was pressed, and then the complete content of the surrounding and, from there, to tothe surrounding class and further. block statement was shown be selected. The selection expands from the current statement to surrounding block statements the surrounding from there, to the surrounding class To successively narrowtothe selection,method pressand, Alt-Shift-Comma, and further. To successively narrow the selection, press Alt-Shift-Comma, instead of Alt-Shift-Period. instead of Alt-Shift-Period.

Cutting, Copying, Pasting, and Deleting Text 3. Generate code skeletons. Whenever you want to generate commonly needed pieces of code, such

Keys

Action

Cmd-Z

Undo. Reverses a series of editor actions one at a time (excluding Save).

Cmd-Y

Redo. Reverses a series of Undo commands one at a time.

Cmd-X

Cut. Deletes the current selection and places it on the clipboard.

Cmd-C

Copy. Copies the current selection to the clipboard.

Cmd-V

Paste. Pastes the contents of the clipbard at the insert point.

Backspace Delete

Deletes the current selection.

Cmd-E

Deletes the current line.

Cmd-K

Copies the word preceding the insertion point and then pastes it after the insertion point (the insertion point must be in the whitespace preceeding or following a word). Press K multiple times to cycle through preceding words in succession.

Cmd-Shift-K

Copies the word following the insertion point and pastes it at the insertion point (the insertion point must be located in the whitespace preceeding or following a word.) Press L multiple times to cycle through consecutive following words.

1 of 4

4/21/08 10:44

3. Generate code skeletons. Whenever you want to generate commonly needed pieces of code, such 3. Generate code skeletons. Whenever you want to generate http:/ code, such as constructors, 1 of 4 4/21/08 10:44 getters, and setters, simply click Alt-Insert, and a small popup as constructors, and setters, and a small popup appears appears with agetters, list of items fromsimply whichclick you Alt-Insert, can select: items from which you can select:

10 Handy Shortcuts needed in NetBeanspieces IDE 6.0 of Editor commonly

10 Handy Editor Shortcuts in NetBeans IDE 6.0

http://netbeans.dzo

as constructors, getters, and setters, simply click Alt-Insert, and a small popup appears with a list items from which you can select:

To Change Default Settings: 1. Choose Tools > Options from the main menu.

4. Inplace rename. If you want to change a variable, method, or other item, of which 4. Inplace rename. If you want to change variable, are used in your code, press Ctrl-R, and you awill see thatmethod, all instances of the item turn same time,item, as shown below.more Now,than whenone you are change theinselected or other of which used your item, all the other ins at the same time, until you press Escape, at which point the inplace rename mode come code, press Ctrl-R, and you will see that all instances of the item turn blue at the same time, as shown below. Now, when yourename. change thewant selected item, all themethod, other instances of which more than 4. Inplace If you to change a variable, or other item, are used inatyour press Ctrl-R, andyou you will see Escape, that all instances of the item turn blue at the change thecode, same time, until press at which same time, as shown below. Now, when you change the selected item, all the other instances cha point the time, inplace mode atcomes to an at the same until rename you press Escape, which point theend. inplace rename mode comes to an end

2. For code templates, select Editor and click the Code Templates tab. Here you can also change the expansion key, from Tab to something else. 3. For keyboard shortcuts, select Keymap and choose a profile from the Profile drop-down list.

10 handy editor shortcuts The following are some of the many cool NetBeans IDE 6.0 keyboard shortcuts that no programmer will be able to do without, once you know they’re there. Not all of these are new in 6.0, some were there before, but deserve to be highlighted because often they’re overlooked.

5. Add/Remove comment lines. Select one or more lines, press Ctrl-/ and then the se commented out, as shown below. Press the same keys again and the commented lines be commented. This was, of course, also possible in previous releases, but previously different keyboard shortcuts, one for commenting and one for uncommenting. Now th been combined into one shortcut, you can quickly toggle between comment and uncom makes this activity muchlines. fasterSelect and more 5. Add/Remove comment one orefficient. more lines, press Ctrl-/ and then the selected lines

commented out, as shown below. Press the same keys again and the commented lines will no lon DZone, Inc.

|

be commented. This was, of course, also possible in previous releases, but previously there were www.dzone.com

different keyboard shortcuts, one for commenting and one for uncommenting. Now that they hav

5

NetBeans IDE Java Editor

tech facts at your fingertips

4. Inplace rename. If you want to change a variable, method, or other item, of which more than one are used in your code, press Ctrl-R, and you will see that all instances of the item turn blue at the same time, as shown below. Now, when you change the selected item, all the other instances change the sameEditor time, until you press Escape, at which point the inplace rename mode comes an edit. end. Often, you find yourself in a situation 10 atHandy Shortcuts, continued 8. Jump toto last where you have edited in one document, while you 5. Add/Remove comment lines. Select one or more lines, currently find yourself in a completely different document. press Ctrl-/ and then the selected lines are commented How do you get back to the place where you were last editing your code? That is likely to be the place where you out, as shown below. Press the same keys again and the 8. Jump to back last edit. find yourself a situation where you hav want to get to, inOften, order you to do some morein editing. commented lines will no longer be commented. This while you currently find yourself in a completely different document. How Now, click Ctrl-Q, the lastcode? editedThat document was, of course, also possible in previous releases, but placewhenever where youyou were last editing your is likely to be the place is found, and the cursor lands on the line where the to, in order to do some more editing. Now, wheneverlast you click Ctrl-Q, the previously there were two different keyboard shortcuts, found, and the cursor lands on the line where the last edit edit took place. Alternatively, you can click the button took place. Altern 5. Add/Remove comment Select one or more lines, press one for commenting andlines. one for uncommenting. Now Ctrl-/ and then the selected lines are button shown below, in the left of corner of the Source shown below, in the top left top corner the Source Editor:Editor: commented out, as shown below. Press the same keys again and the commented lines will no longer that they have been combined into one shortcut, you canreleases, be commented. This was, of course, also possible in previous but previously there were two quickly toggle between comment and uncomment, which different keyboard shortcuts, one for commenting and one for uncommenting. Now that they have been combined into one shortcut, quickly toggle between comment and uncomment, which makes this activity much fasteryou andcan more efficient. makes this activity much faster and more efficient.

9. Bookmarks. When Ctrl-Shift-M, the current 9. Bookmarks. When you you presspress Ctrl-Shift-M, the current line line is "bookma can later cycle back/forward it (with 6. Inspect members/hierarchy. Both the members of the current class as well as“bookmarked”. itsyou hierarchy can quickly be isthat What this means is that youtocan later Ctrl-Shift-Period a bookmarked line gets a small the left sidebar,and as shown below, unti 6. Inspect the members of the of the current file displayedmembers/hierarchy. and then filtered. PressBoth Alt-F12 and the ancestors shown. Onback/forward the are quickly cycle to iticon (withinCtrl-Shift-Period on thehere: line again, to remove the bookmark: other hand, if you pressasCtrl-F12, the current file's membersand are displayed, as shown current class as well its hierarchy can be displayed Ctrl-Shift-Comma). The bookmarked line gets a small then filtered. Press Alt-F12 and the ancestors of the current 10 Handy Editor iconShortcuts in the left sidebar, IDE as shown below, until you press in NetBeans 6.0 file are shown. On the other hand, if you press Ctrl-F12, Ctrl-Shift-M on the line again, to remove the bookmark: 10 Handy Editor Shortcuts in NetBeans IDE 6.0 http://netbeans.dzone.com/print/280 the current file’s members are displayed, as shown here: 10 Handy Editor Shortcuts in NetBeans IDE 6.0

http://netbeans.dz

3 of 4 10 Handy Editor Shortcuts in NetBeans IDE 6.0

http://netbeans.dzone.com/print/280

10. Highlight exit points. Place cursor on the return type will i 4/21/08 10:44 AM 10. Highlight exit points. Place the the cursor on the and yousee 10. Highlight exit points. Place the cursor on the return typereturn and youtype will immediately all ex points highlighted: points highlighted: and you will immediately see all exit points highlighted:

2 of 4

7. Switch between documents. When you have multiple documents open at the same time, press

7. Ctrl Switch documents. When you have through the popup, which displays all and between Tab, and then a small popup appears. Youmultiple can scroll open documents, choose document thatTab, you want to open: the documents open atand thethen same time,the press Ctrl and and then a small popup appears. You can scroll through 7. Switch between you have multiple and documents open at the same time, press the popup, which documents. displays all When the open documents, Ctrl and Tab, and then a small popup appears. You can scroll through the popup, which displays all then choose the document that you want to open: the open documents, and then choose the document that you want to open:

Source URL: http://netbeans.dzone.com/news/10-handy-editor-shortcuts-netbeans-ide-60

Quick Options Window Overview

The Options window lets you customize NetBeans IDE in a Source URL: http://netbeans.dzone.com/news/10-handy-editor-shortcuts-n number of ways. Most people don’t know how much can be customized there. The table below provides an overview foredited 6.1 only. 8. Jump to last edit. Often, you find yourself in a situation where you have in one document,

while you currently find yourself in a completely different document. How do you get back to the Generalyou wantSets place where you were last editing your code? That is likely to be the place where to the getIDE-wide back browser and the proxy settings. to, in order to do some more editing. Now, whenever you click Ctrl-Q, the last edited document is found, andtothe lands on thefind lineyourself where the edit took place. click the 8. Jump lastcursor edit. Often, you in alast situation where youAlternatively, have Editor edited inyou onecan document, Sets the editor-specific options, button shown below,find in the top left of the different Source Editor: while you currently yourself in corner a completely document. How do you get backspecifically to the those relating to code place where you were last editing your code? That is likely to be the place where you want to get back folding, code completion, camel case URL: to, in order toSource do some more editing. Now, whenever you click Ctrl-Q, the last edited document is indentation, code templates, behavior, found, cursor lands on the line where the last edit took place. Alternatively, you canand click the macros. FYIand thehttp://netbeans.dzone.com/news/10-handybutton shown below, in the top left corner of the Source Editor:

editor-shortcuts-netbeans-ide-60

Web Browser

n

Proxy Settings

n

Code Folding

n

Code Completion

n

Camel Case Behavior

n

Indentation

n

Code Templates

n

Macros

n

DZone, Inc.

|

www.dzone.com

6

NetBeans IDE Java Editor

tech facts at your fingertips

Quick Options Window Overview, continued Fonts & Colors

Keymap

Sets the fonts and colors for syntax, highlighting, annotations, and diff viewer. Sets the keyboard profile to be used throughout the IDE. By default, profiles are provided for NetBeans, Eclipse, and Emacs. A legacy profile is also provided, for NetBeans 5.5 keyboard shortcuts, which were radically rewritten in NetBeans IDE 6.0.

Miscellaneous

Sets the options for Ant processing, appearance, diffing, the Matisse GUI Builder, JavaScript, Profiler, ToDo Tasks, and Versioning.

RESOURCES

Syntax n Highlighting n Annotations n Diff n

NetBeans Profile n Eclipse Profile n Emacs Profile n NetBeans 5.5 Profile n

Ant Appearance n Diff n GUI Builder n Profiler n ToDo Tasks n JavaScript n Versioning

Resource

URL

NetBeans DZone Community

http://netbeans.dzone.com/

NetBeans Tutorials

http://www.netbeans.org/kb/index.html

NetBeans Video Tutorials

http://www.netbeans.org/kb/60/screencasts.html

NetBeans Blogs

http://planetnetbeans.org/

NetBeans TV

http://netbeans.tv/

NetBeans Weekly Newsletter:

http://www.netbeans.org/community/news/ newsletter/latest.html

n n

ABOUT THE AUTHORS

Thanks to the following people who kindly gave of their time and expertise in reviewing this refcard: Adam Bien, Tonny Kohar, Varun Nischal, Kristian Rink, and Tom Wheeler.

RECOMMENDED BOOKS

Geertjan Wielenga is the NetBeans technical writer responsible for documentation related to the NetBeans Java editor. He is co-author of the book Rich Client Programming: Plugging into the NetBeans Platform. He is known for his popular blog at http://blogs.sun.com/geertjan, as well as for his role as a Zone Leader at Javalobby.

Rich Client Programming will help you get started with NetBeans module development, master NetBeans’ key APIs, and learn proven techniques for building reliable desktop software.

Patrick Keegan has been writing about the NetBeans IDE for over 9 years. In addition to writing help and tutorials, he is co-author of the NetBeans IDE Field Guide and has contributed to other books on NetBeans and Java.

Pro NetBeans IDE 6 Rich Client Platform Edition focuses on the new features of NetBeans 6 as well as what has changed since NetBeans 5.5, empowering you to be a more effective and productive developer.

BUY NOW books.dzone.com/books/richclientprog books.dzone.com/books/pronetbeans

Get More FREE Refcardz. Visit refcardz.com now! Upcoming Refcardz:

Available:

Using XML in Java

Getting Started with Hibernate Search

PHP

Core Seam

JavaServer Faces

Getting Started with Equinox and OSGi

Essential Ruby

Core CSS: Part I

Essential MySQL

Struts2

SOA Patterns

JUnit and EasyMock

Core .NET

Getting Started with MyEclipse

Very First Steps in Flex

Spring Annotations

C#

Core Java

Groovy

Core CSS: Part II

NetBeans IDE 6.1 Java Editor

Getting Started with EMF

Getting Started with JPA

FR E E

Design Patterns Published June 2008

Visit refcardz.com for a complete listing of available Refcardz. DZone, Inc. 1251 NW Maynard Cary, NC 27513

DZone communities deliver over 4 million pages each month to more than 1.7 million software developers, architects and decision makers. DZone offers something for everyone, including news, tutorials, cheatsheets, blogs, feature articles, source code and more. “DZone is a developer’s dream,” says PC Magazine.

ISBN-13: 978-1-934238-13-4 ISBN-10: 1-934238-13-9 50795

888.678.0399 919.678.0300 Refcardz Feedback Welcome [email protected] Sponsorship Opportunities [email protected]

$7.95

Core Mule 2

9 781934 238134

Copyright © 2008 DZone, Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by means electronic, mechanical, photocopying, or otherwise, without prior written permission of the publisher.

Version 1.1

Related Documents

Java Card
June 2020 9
Java Card
July 2020 5
Netbeans
October 2019 23

More Documents from ""

Vtr Ravi Kumar
April 2020 8
Websphere Message Broker
November 2019 15
Itil V3_ebook
November 2019 21
Planning Soa Ibm
November 2019 11