JDeveloper Plugin
Brought to you by:
simeonzv
accelerator keys have to be assigned again on each new
start of JDeveloper.
this is because XXCommand classes are not instanciated
on initializing VariableHighlighterAddin; so the ide
cannot restore accelerators on non existing Commands.
solution:
add this into VariableHighlighterAddin.initialize
// Instanciate Commands (uggly way, but we do not
need to touch XXCommand source)
int id = 0;
id = MoveToNextVriableOccurrenceCommand.ID;
id = MoveToDeclarationCommand.ID;
id = MoveToOriginalVriableOccurrenceCommand.ID;
id = MoveToPreviousVriableOccurrenceCommand.ID;
id = RenameVariableCommand.ID;
Logged In: YES
user_id=1110037
accelerator keys have to be assigned again on each new start
of JDeveloper.
this is because XXCommand classes are not instantiated on
initializing VariableHighlighterAddin; so the ide cannot
restore accelerators on non existing Commands.
// Instantiate Commands (uggly way, but we do not need to
touch XXCommand source)
int id = 0;
id = MoveToNextVriableOccurrenceCommand.ID;
id = MoveToDeclarationCommand.ID;
id = MoveToOriginalVriableOccurrenceCommand.ID;
id = MoveToPreviousVriableOccurrenceCommand.ID;
id = RenameVariableCommand.ID;