Your questions don't make sense. Since you're new to Java, you should try and get a Windows Notepad clone working before you tackle more complex editor behaviors.
Auto-complete and auto-indenting require that the editor know what type of text is being edited.
To take one example, English text auto-completing would probably use a list of the uncommon English words used before in the editor. Auto-indenting would automatically indent the cursor one tab at the start of a paragraph.
The rules for auto-complete and auto-indenting would be different for Java code. The editor would have to recognize Java syntax and maintain a list of Java methods.
The mechanics of auto-complete are matching what the user is typing with a list of words (for the first example) or Java methods (for the second example). Since more than one word or method is likely to match, you display a list, and let the user choose one if so desired.