Skip to main content

Posts

Showing posts from August, 2008

Why Chiru?

I don't want to say Chiru will do wonders. But he is not mastered in looting the people like others. He is not an experienced Politician .Its a great Qualification. One of my friend raised an objection here saying that " being in-experienced politican how its going to be a great qualification and do you thinking that all current politicans are bad" i am accepting his comments and removing a few words from my article.... He is a new comer into this field, so by the time he learns how to do all these things, it will take some time. As a fresher, he will may try to do some thing good for till he get defeated. By the track record of Chiru, i don't think, he will get defeated. Just because he became No.1 in a field which similarly ruled on the base of caste. But he conquered it not just with Charishma and acting. He know how to win. Another comment is how chiru's past track record in Movie field will guarentee success in completely different "Political field...

Netbeans 6.0 - Code generation

The Java editor is capable of generating often used constructs for you automatically. Press Alt+Insert to invoke the code generation menu and pick what you want to generate To add import statements: Use error hints : Click on the error mark with the light bulb or press Alt+Enter . It will offer you a list of possible classes to import. Pick the proper hint and you are done Use the import class dialog : Put the caret into the name of an unimported class and press Alt+Shift+I . A list of possible classes to import will appear. Use the smart fix import : Press Ctrl+Shift+I . You will get a dialog that lists all unresolved identifiers in the source. If there is more than one option for resolving the identifier you may choose using the combo box. Classes shown in gray do not fit for some reason. Method exit points : Putting the caret on the return type of a method definition will highlight all places where the method can exit Exception throwing points : Putting the caret on an...

NetBeans 6.0 - Code Completition

1. Code completion behavior Ctrl+Space lists symbols which are already imported in your source file, plus of course symbols from the java.lang package. Pressing Ctrl+Space again will list all symbols from the project class path whether imported or not. If you want to go to the list of all types immediately you can use the All Symbols Completion , which is invoked by pressing Ctrl+Alt+Space 2. Smart completion - Notice that the standard completion list box is divided into two parts separated by a black line. The first section includes smart completion items . The editor chooses these items based on the current context (i.e. around the current caret position) when completion is invoked. See other bullet points below starting with "smart" for more information and examples of this smart completion feature 3. Completing Keywords You may use code completion for completing keywords: the editor knows which keywords fit into which place in your code. ...

Netbeans 6.0 Shortcuts / Tips

1. If the code you pasted in is not formatted correctly, press Alt-Shift-F to reformat the entire file 2. Press Ctrl-Space to open the code completion box . A short list of possible ways to complete the word appears 3. Type sout and press Tab . The sout abbreviation expands to System.out.println("") ; with the cursor positioned between the quotation marks. 4. Type psfs and press Tab . The psfs abbreviation expands to private static final String . 5. To supply command line arguments to the program Right-click the project node, choose Properties, and select the Run node in the dialog's left pane and then enter the arguments at the arguments dialog box 6. To run the project choose Run à Run Main Project ( F6 ) from the Run menu 7. If you build a project and then later change classes, it is good to remove all build artifacts from your system and create a fresh build of the application. You can do this w...