SlideShare a Scribd company logo
1 of 2
Download to read offline
Highlights of NetBeans IDE 6.9 Keyboard Shortcuts & Code Templates
Finding, Searching, and Replacing                                                                             Opening and Toggling between Views
                                                         Coding in Java
Ctrl-F3             Search word at insert point                                                               Ctrl-Tab (Ctrl-`)    Toggle between open
F3/Shift-F3         Find next/previous in file           Alt-Insert          Generate code                                         documents
Ctrl-F/H            Find/Replace in file                 Ctrl-Shift-I        Fix all class imports            Shift-Escape         Maximize window (toggle)
Alt-F7              Find usages                          Alt-Shift-I         Fix selected class's import      Ctrl-F4/Ctrl-W       Close currently selected window
Ctrl-Shift-F/H      Find/replace in projects             Alt-Shift-F         Format selection                 Ctrl-Shift-F4        Close all windows
Alt-Shift-U         Find usages results                  Alt-Shift Left/     Shift lines left/right/up/down   Shift-F10            Open contextual menu
Alt-Shift-H         Turn off search result highlights    Right/Up/Down                                        Alt-Shift-D          Undock window
Ctrl-R              Rename                               Ctrl-Shift-Up/D     Copy lines up/down
                                                         Ctrl/Alt-F12        Inspect members/hierarchy        Debugging
Ctrl-U, then U      Convert selection to uppercase
Ctrl-U, then L      Convert selection to lowercase       Ctrl-/              Add/remove comment lines
                                                                                                              Ctrl-F5             Start debugging main project
Ctrl-U, then S      Toggle case of selection             Ctrl-E              Delete current line
                                                                                                              Ctrl-Shift-F5       Start debugging current file
Ctrl-Shift-V        Paste formatted                      Coding in C/C++                                      Ctrl-Shift-F6       Start debugging test for file
Ctrl-I              Jump to quick search field                                                                                    (JUnit)
                                                         Alt-Shift-C         Go to declaration                Shift-F5/F5         Stop/Continue debugging session
Navigating through Source Code                           Ctrl-F9             Evaluate expression              F4                  Run to cursor location in file
Ctrl-O/Alt-Shift-O Go to type/file                       Coding in Ruby                                       F7/F8               Step into/over
Ctrl-Shift-T        Go to JUnit test                                                                          Ctrl-F7             Step out
Alt-O               Go to source                         Ctrl-Shift-A        Jump Rails action > view         Ctrl-Alt-Up         Go to called method
Ctrl-B              Go to declaration                    Alt-Shift-          Select Next/Previous element     Ctrl-Alt-Down       Go to calling method
Ctrl-G              Go to line                           Period/Comma                                         Ctrl-F9             Evaluate expression
Ctrl-Shift-M        Toggle add/remove bookmark           Ctrl-Shift-Space    Show documentation               Ctrl-F8             Toggle breakpoint
Ctrl-Shift-         Next/previous bookmark               Ctrl-Shift-T        Jump from test file to file      Ctrl-Shift-F8       New breakpoint
Period/Comma                                             Compiling, Testing, and Running                      Ctrl-Shift-F7       New watch
Ctrl-Period/CommaNext/previous usage/compile                                                                  When typing in the Source Editor, generate the text in
                    error                                F9                 Compile package/ file
                                                         F11                Build main project                the right-column below by typing the abbreviation that is
Ctrl-Shift-1/2/3    Select in Projects/Files/Favorites                                                        listed in the left-column and then pressing Tab.
Ctrl-[              Move caret to matching bracket       Shift-F11          Clean & build main project
Ctrl-K/Ctrl-Shift K Next/previous word match             Ctrl-Q             Set request parameters            Java Editor Code Templates
Alt-Left/Alt-       Go backward/forward/to last          Ctrl-Shift-U       Create JUnit test
                                                                                                              En        Enumeration
Right/Ctrl-Q        edit                                 Ctrl-F6/Alt-F6     Run JUnit test on file/project    Ex        Exception
Alt Up/Down         Next/previous marked                 F6/Shift-F6        Run main project/file             Ob        Object
                    occurrence                                                                                Psf       public static final
                                                                                                              Psfb      public static final boolean
                                                                                                              Psfi      public static final int
                                                                                                              Psfs      public static final String
                                                                                                              St        String
Highlights of NetBeans IDE 6.9 Keyboard Shortcuts & Code Templates
ab        abstract                                       le       length                                        JSP Editor Code Templates
as        assert true;                                   na       native
bcom      /**/                                           newo     Object name = new Object(args);               ag      application.getAttribute("|")
bo        boolean                                        pe       protected                                     ap      application.putAttribute("|",)
br        break;                                         pr       private                                       ar      application.removeAttribute("|")
ca        catch (                                        psf      private static final                          cfgi    config.getInitParameter("|")
cl        class                                          psfb     private static final boolean                  jspf    <jsp:forward page="|"/>
cn        continue                                       psfi     private static final int                              <jsp:getProperty name="|"
                                                                                                                jspg
db        double                                         psfs     private static final String                            property="" />
df        default:                                       pst      printStackTrace();                            jspi    <jsp:include page="|"/>
dowhile   do {                                           psvm     public static void main(String[] args){               <jsp:plugin type="|" code=""
                                                                                                                jspp
          } while (condition);                                    }                                                      codebase=""></jsp:plugin>
eq        equals                                         pu       public                                        jsps    <jsp:setProperty name="|" property=""/>
ex        extends                                        re       return                                        jspu    <jsp:useBean id="I" type=""/>
fa        false                                          runn     Runnable runnable = new Runnable() {          oup     out.print("|")
fcom      // <editor-fold></editor-fold>                           public void run() {}};                       oupl    out.println("|")
fi        final                                          serr     System.err.println ("|");                     pcg     pageContext.getAttribute("|")
fl        float                                          sh       short                                         pcgn    pageContext.getAttributeNamesInScope("|")
          for (Iterator it = collection.iterator();      sout     System.out.println ("|");                     pcgs    pageContext.getAttributesScope("|")
forc                                                                                                            pcr     pageContext.removeAttribute("|")
              it.hasNext();) {                           soutv    System.out.println("Object = " + Object);
              Object elem = (Object) it.next();          st       static                                        pcs     pageContext.setAttribute("|",)
          }                                              su       super                                         pg      <%@page |%>
fore      for (Object elem : iterable) {                 sw       switch (var) { case val: break;               pga     <%@page autoFlush="false"%>
          }                                                          default: throw new AssertionError();}      pgb     <%@page buffer="|kb"%>
fori      for (int i = 0; i < arr.length; i++) {}        sy       synchronized                                  pgc     <%@page contentType="|"%>
forl      for (int i = 0; i < lst.size(); i++) {         tds      Thread.dumpStack();                           pgerr   <%@page errorPage="|"%>
            Object object = lst.get(i); }                th       throws                                        pgex    <%@page extends="|"%>
forst     for (StringTokenizer st = new                  tr       transient                                     pgie    <%@page isErrorPage="true"%>
           StringTokenizer(""); st.hasMoreTokens();) }   trycatch try {}                                        pgim    <%@page import="|"%>
forv      for (int i = 0; i < vct.size(); i++) {                   catch (Exception e) {}                       pgin    <%@page info="|"%>
           Object object = vct.elementAt(i);}            tw       throw                                         pgit    <%@page isThreadSafe="false"%>
fy        finally{ |}                                    twn      throw new                                     pgl     <%@page language="java"%>
ie        interface                                      vo       volatile                                      pgs     <%@page session="false"%>
ifelse    if (condition){}else {                         wh       while (                                       rg      request.getParameter("|")
          }                                              whileit  while (it.hasNext()) {                        sg      session.getAttribute("|")
iff       if (exp) {}                                                Object elem = (Object) it.next();}         sp      session.setAttribute("|", )
im        implements                                                                                            sr      session.removeAttribute("|")
inst      if (exp instanceof Object) {                   whilen    while (en.hasMoreElements()) {               tglb    <%@taglib uri="|"%>
            Object obj = (Object) exp;                              Object elem = (Object) en.nextElement();}
iof       instanceof
 ir       import                                         whilexp   while (exp) {}

More Related Content

Viewers also liked

Konsep oop pada php dan mvc pada php framework, 1200631047 1200631018 1200631028
Konsep oop pada php dan mvc pada php framework, 1200631047 1200631018 1200631028Konsep oop pada php dan mvc pada php framework, 1200631047 1200631018 1200631028
Konsep oop pada php dan mvc pada php framework, 1200631047 1200631018 1200631028iis dahlia
 
GUI Programming in JAVA (Using Netbeans) - A Review
GUI Programming in JAVA (Using Netbeans) -  A ReviewGUI Programming in JAVA (Using Netbeans) -  A Review
GUI Programming in JAVA (Using Netbeans) - A ReviewFernando Torres
 
GUI Programming In Java
GUI Programming In JavaGUI Programming In Java
GUI Programming In Javayht4ever
 

Viewers also liked (7)

State of NetBeans
State of NetBeansState of NetBeans
State of NetBeans
 
Konsep oop pada php dan mvc pada php framework, 1200631047 1200631018 1200631028
Konsep oop pada php dan mvc pada php framework, 1200631047 1200631018 1200631028Konsep oop pada php dan mvc pada php framework, 1200631047 1200631018 1200631028
Konsep oop pada php dan mvc pada php framework, 1200631047 1200631018 1200631028
 
Administrasi MongoDB
Administrasi MongoDBAdministrasi MongoDB
Administrasi MongoDB
 
Java swings
Java swingsJava swings
Java swings
 
Method pada Java
Method pada JavaMethod pada Java
Method pada Java
 
GUI Programming in JAVA (Using Netbeans) - A Review
GUI Programming in JAVA (Using Netbeans) -  A ReviewGUI Programming in JAVA (Using Netbeans) -  A Review
GUI Programming in JAVA (Using Netbeans) - A Review
 
GUI Programming In Java
GUI Programming In JavaGUI Programming In Java
GUI Programming In Java
 

Similar to Netbeans help

Netbeans 8.0 Keyboard Shortcuts & Code Templates
Netbeans 8.0 Keyboard Shortcuts & Code TemplatesNetbeans 8.0 Keyboard Shortcuts & Code Templates
Netbeans 8.0 Keyboard Shortcuts & Code TemplatesMollah Nayeem Ahmed
 
best hotels in Pune
best hotels in Punebest hotels in Pune
best hotels in PuneKhushiRaj39
 
Shortcuts JAVA
Shortcuts JAVAShortcuts JAVA
Shortcuts JAVATito O
 
IntelliJIDEA_ReferenceCard.pdf
IntelliJIDEA_ReferenceCard.pdfIntelliJIDEA_ReferenceCard.pdf
IntelliJIDEA_ReferenceCard.pdfDvrIsis2
 
IntelliJ IDEA Default Keymap
IntelliJ IDEA Default KeymapIntelliJ IDEA Default Keymap
IntelliJ IDEA Default KeymapThanh Nguyen
 
Eclipse shortcut[most usuage]
Eclipse shortcut[most usuage]Eclipse shortcut[most usuage]
Eclipse shortcut[most usuage]Siddiq Abu Bakkar
 
Using eclipse-shortcuts-key-for-fast-coding
Using eclipse-shortcuts-key-for-fast-codingUsing eclipse-shortcuts-key-for-fast-coding
Using eclipse-shortcuts-key-for-fast-codingParikshit Kumar Singh
 
High productivity development with Eclipse and Java 8
High productivity development with Eclipse and Java 8High productivity development with Eclipse and Java 8
High productivity development with Eclipse and Java 8Noopur Gupta
 
Visual Studio 2010 - Microsoft Visual C# Key Bindings
Visual Studio 2010 - Microsoft Visual C# Key BindingsVisual Studio 2010 - Microsoft Visual C# Key Bindings
Visual Studio 2010 - Microsoft Visual C# Key BindingsGlobalLogic Ukraine
 
Quick reference r2005
Quick reference r2005Quick reference r2005
Quick reference r2005Alaa Wafa
 
Phim tat-macbook
 Phim tat-macbook Phim tat-macbook
Phim tat-macbookVân Anh
 

Similar to Netbeans help (20)

Netbeans 8.0 Keyboard Shortcuts & Code Templates
Netbeans 8.0 Keyboard Shortcuts & Code TemplatesNetbeans 8.0 Keyboard Shortcuts & Code Templates
Netbeans 8.0 Keyboard Shortcuts & Code Templates
 
Shortcuts
ShortcutsShortcuts
Shortcuts
 
best hotels in Pune
best hotels in Punebest hotels in Pune
best hotels in Pune
 
Shortcuts JAVA
Shortcuts JAVAShortcuts JAVA
Shortcuts JAVA
 
IntelliJIDEA_ReferenceCard.pdf
IntelliJIDEA_ReferenceCard.pdfIntelliJIDEA_ReferenceCard.pdf
IntelliJIDEA_ReferenceCard.pdf
 
Php storm reference_card
Php storm reference_cardPhp storm reference_card
Php storm reference_card
 
IntelliJ IDEA Default Keymap
IntelliJ IDEA Default KeymapIntelliJ IDEA Default Keymap
IntelliJ IDEA Default Keymap
 
Eclipse shortcut[most usuage]
Eclipse shortcut[most usuage]Eclipse shortcut[most usuage]
Eclipse shortcut[most usuage]
 
Netbeans keyboard shortcut
Netbeans keyboard shortcutNetbeans keyboard shortcut
Netbeans keyboard shortcut
 
Short cutkey
Short cutkeyShort cutkey
Short cutkey
 
Ruby mine referencecard
Ruby mine referencecardRuby mine referencecard
Ruby mine referencecard
 
rstudio-ide
rstudio-iderstudio-ide
rstudio-ide
 
Using eclipse-shortcuts-key-for-fast-coding
Using eclipse-shortcuts-key-for-fast-codingUsing eclipse-shortcuts-key-for-fast-coding
Using eclipse-shortcuts-key-for-fast-coding
 
High productivity development with Eclipse and Java 8
High productivity development with Eclipse and Java 8High productivity development with Eclipse and Java 8
High productivity development with Eclipse and Java 8
 
Visual Studio 2010 - Microsoft Visual C# Key Bindings
Visual Studio 2010 - Microsoft Visual C# Key BindingsVisual Studio 2010 - Microsoft Visual C# Key Bindings
Visual Studio 2010 - Microsoft Visual C# Key Bindings
 
Notepad
NotepadNotepad
Notepad
 
groovy & grails - lecture 5
groovy & grails - lecture 5groovy & grails - lecture 5
groovy & grails - lecture 5
 
Quick reference r2005
Quick reference r2005Quick reference r2005
Quick reference r2005
 
Vim and Python
Vim and PythonVim and Python
Vim and Python
 
Phim tat-macbook
 Phim tat-macbook Phim tat-macbook
Phim tat-macbook
 

Recently uploaded

Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxdhanalakshmis0310
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxAmita Gupta
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 

Recently uploaded (20)

Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 

Netbeans help

  • 1. Highlights of NetBeans IDE 6.9 Keyboard Shortcuts & Code Templates Finding, Searching, and Replacing Opening and Toggling between Views Coding in Java Ctrl-F3 Search word at insert point Ctrl-Tab (Ctrl-`) Toggle between open F3/Shift-F3 Find next/previous in file Alt-Insert Generate code documents Ctrl-F/H Find/Replace in file Ctrl-Shift-I Fix all class imports Shift-Escape Maximize window (toggle) Alt-F7 Find usages Alt-Shift-I Fix selected class's import Ctrl-F4/Ctrl-W Close currently selected window Ctrl-Shift-F/H Find/replace in projects Alt-Shift-F Format selection Ctrl-Shift-F4 Close all windows Alt-Shift-U Find usages results Alt-Shift Left/ Shift lines left/right/up/down Shift-F10 Open contextual menu Alt-Shift-H Turn off search result highlights Right/Up/Down Alt-Shift-D Undock window Ctrl-R Rename Ctrl-Shift-Up/D Copy lines up/down Ctrl/Alt-F12 Inspect members/hierarchy Debugging Ctrl-U, then U Convert selection to uppercase Ctrl-U, then L Convert selection to lowercase Ctrl-/ Add/remove comment lines Ctrl-F5 Start debugging main project Ctrl-U, then S Toggle case of selection Ctrl-E Delete current line Ctrl-Shift-F5 Start debugging current file Ctrl-Shift-V Paste formatted Coding in C/C++ Ctrl-Shift-F6 Start debugging test for file Ctrl-I Jump to quick search field (JUnit) Alt-Shift-C Go to declaration Shift-F5/F5 Stop/Continue debugging session Navigating through Source Code Ctrl-F9 Evaluate expression F4 Run to cursor location in file Ctrl-O/Alt-Shift-O Go to type/file Coding in Ruby F7/F8 Step into/over Ctrl-Shift-T Go to JUnit test Ctrl-F7 Step out Alt-O Go to source Ctrl-Shift-A Jump Rails action > view Ctrl-Alt-Up Go to called method Ctrl-B Go to declaration Alt-Shift- Select Next/Previous element Ctrl-Alt-Down Go to calling method Ctrl-G Go to line Period/Comma Ctrl-F9 Evaluate expression Ctrl-Shift-M Toggle add/remove bookmark Ctrl-Shift-Space Show documentation Ctrl-F8 Toggle breakpoint Ctrl-Shift- Next/previous bookmark Ctrl-Shift-T Jump from test file to file Ctrl-Shift-F8 New breakpoint Period/Comma Compiling, Testing, and Running Ctrl-Shift-F7 New watch Ctrl-Period/CommaNext/previous usage/compile When typing in the Source Editor, generate the text in error F9 Compile package/ file F11 Build main project the right-column below by typing the abbreviation that is Ctrl-Shift-1/2/3 Select in Projects/Files/Favorites listed in the left-column and then pressing Tab. Ctrl-[ Move caret to matching bracket Shift-F11 Clean & build main project Ctrl-K/Ctrl-Shift K Next/previous word match Ctrl-Q Set request parameters Java Editor Code Templates Alt-Left/Alt- Go backward/forward/to last Ctrl-Shift-U Create JUnit test En Enumeration Right/Ctrl-Q edit Ctrl-F6/Alt-F6 Run JUnit test on file/project Ex Exception Alt Up/Down Next/previous marked F6/Shift-F6 Run main project/file Ob Object occurrence Psf public static final Psfb public static final boolean Psfi public static final int Psfs public static final String St String
  • 2. Highlights of NetBeans IDE 6.9 Keyboard Shortcuts & Code Templates ab abstract le length JSP Editor Code Templates as assert true; na native bcom /**/ newo Object name = new Object(args); ag application.getAttribute("|") bo boolean pe protected ap application.putAttribute("|",) br break; pr private ar application.removeAttribute("|") ca catch ( psf private static final cfgi config.getInitParameter("|") cl class psfb private static final boolean jspf <jsp:forward page="|"/> cn continue psfi private static final int <jsp:getProperty name="|" jspg db double psfs private static final String property="" /> df default: pst printStackTrace(); jspi <jsp:include page="|"/> dowhile do { psvm public static void main(String[] args){ <jsp:plugin type="|" code="" jspp } while (condition); } codebase=""></jsp:plugin> eq equals pu public jsps <jsp:setProperty name="|" property=""/> ex extends re return jspu <jsp:useBean id="I" type=""/> fa false runn Runnable runnable = new Runnable() { oup out.print("|") fcom // <editor-fold></editor-fold> public void run() {}}; oupl out.println("|") fi final serr System.err.println ("|"); pcg pageContext.getAttribute("|") fl float sh short pcgn pageContext.getAttributeNamesInScope("|") for (Iterator it = collection.iterator(); sout System.out.println ("|"); pcgs pageContext.getAttributesScope("|") forc pcr pageContext.removeAttribute("|") it.hasNext();) { soutv System.out.println("Object = " + Object); Object elem = (Object) it.next(); st static pcs pageContext.setAttribute("|",) } su super pg <%@page |%> fore for (Object elem : iterable) { sw switch (var) { case val: break; pga <%@page autoFlush="false"%> } default: throw new AssertionError();} pgb <%@page buffer="|kb"%> fori for (int i = 0; i < arr.length; i++) {} sy synchronized pgc <%@page contentType="|"%> forl for (int i = 0; i < lst.size(); i++) { tds Thread.dumpStack(); pgerr <%@page errorPage="|"%> Object object = lst.get(i); } th throws pgex <%@page extends="|"%> forst for (StringTokenizer st = new tr transient pgie <%@page isErrorPage="true"%> StringTokenizer(""); st.hasMoreTokens();) } trycatch try {} pgim <%@page import="|"%> forv for (int i = 0; i < vct.size(); i++) { catch (Exception e) {} pgin <%@page info="|"%> Object object = vct.elementAt(i);} tw throw pgit <%@page isThreadSafe="false"%> fy finally{ |} twn throw new pgl <%@page language="java"%> ie interface vo volatile pgs <%@page session="false"%> ifelse if (condition){}else { wh while ( rg request.getParameter("|") } whileit while (it.hasNext()) { sg session.getAttribute("|") iff if (exp) {} Object elem = (Object) it.next();} sp session.setAttribute("|", ) im implements sr session.removeAttribute("|") inst if (exp instanceof Object) { whilen while (en.hasMoreElements()) { tglb <%@taglib uri="|"%> Object obj = (Object) exp; Object elem = (Object) en.nextElement();} iof instanceof ir import whilexp while (exp) {}