Generated by
JDiff

Class javax.swing.text.DefaultCaret

Added Methods
int getUpdatePolicy() Gets the caret movement policy on document updates.
boolean isActive() Determines if the caret is currently active.
void setUpdatePolicy(int) Sets the caret movement policy on the document updates.
 

Added Fields
int ALWAYS_UPDATE Indicates that the caret position is to be always updated accordingly to the document changes regardless whether the document updates are performed on the Event Dispatching Thread or not.
int NEVER_UPDATE Indicates that the caret should remain at the same absolute position in the document regardless of any document updates, except when the document length becomes less than the current caret position due to removal.
int UPDATE_WHEN_ON_EDT Indicates that the caret position is to be updated only when document changes are performed on the Event Dispatching Thread.