Code completion feature for textpad

Using the Java SDK with TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
Code completion feature

Code completion feature for textpad

Post by Code completion feature »

Can we have Code completion feature for textpad.In case any plug in is available it would be of great help for the developers , in other case somebody can take initiative for this and may be tomorrow all of us can enjoy this feature.
Milind
Onchik

Re: Code completion feature for textpad

Post by Onchik »

UltimaShell Pro 2.2

http://www.flashpeak.com/

Autocomplete Word/phrase and Auto-expand Shorthands in ANY applications on MS Windows. Word and shorthand libraries cover most western languages, programming languages and medical abbreviations.

;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-) ;-)
Neelashish Banerjee

Re: Code completion feature for textpad

Post by Neelashish Banerjee »

H:\WORK\DOCS\welcom1.java:4: cannot resolve symbol
symbol : method printIn (java.lang.String)
location: class java.io.PrintStream
System.out.printIn("welcome to java programming");
^
1 error

Tool completed with exit code 1
neelashish banerjee

Re: Code completion feature for textpad

Post by neelashish banerjee »

H:\WORK\DOCS\welcom1.java:4: cannot resolve symbol
symbol : method printIn (java.lang.String)
location: class java.io.PrintStream
System.out.printIn("welcome to java programming");
^
1 error

Tool completed with exit code 1
Garrett

Re: Code completion feature for textpad

Post by Garrett »

The problem in your last msg is that you're typing:

System.out.printIn, with an "i," (capitalized it becomes "I").

The actualy syntax is:

System.out.println

For clarity, in all uppercase that is:

SYSTEM.OUT.PRINTLN();
Post Reply