Internals of Java Virtual Machine are explained very clearly in the below blog by James Blooms.
Internals of JVM by James Blooms
It is all about java. Writings on java technology, programming concepts and knowledge articles especially for beginners
|
Description
|
Shortcut
|
|
Delete Line
|
CTRL + D
|
|
Copy Line
|
CTRL + ALT + Down Arrow
|
|
Add method level, class level, member level Comments
|
SHIFT + ALT + J
|
|
Format Java Source code
|
CTRL + SHIFT + F
|
|
Make line commented
|
CTRL + /
|
|
Make multiple lines [block] commented
|
CTRL + SHIFT + /
|
|
Search selected similar word within the source document
|
CTRL + K
|
|
Select line from beginning to end
|
SHIFT + End key
|
|
Select line from end to beginning
|
SHIFT + Home key
|
|
Select Word by word in same line
|
CTRL + SHIFT + Right Arrow
|
|
Move line above
|
ALT + Up Arrow
|
|
Move line below
|
ALT + Down Arrow
|
Swing library and it's categorization of components and controls Basically, Swing library provides around 50+ components. These all com...