You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although we have supported the quick fix Add unimplemented methods, it will be also helpful to support it on Source Action.
Currently most source actions return java.apply.workspaceEdit command, but for Override/Implement action, one idea is to return a customized command, such as java.action.overrideMethod to client. When the command is executed on client, client will send a request to server to get all possible methods from super class or interface first, then prompt to select the target methods, after that, send the selected methods info to server to compute the TextEdit change, and apply change.
The text was updated successfully, but these errors were encountered:
Although we have supported the quick fix
Add unimplemented methods
, it will be also helpful to support it on Source Action.Currently most source actions return
java.apply.workspaceEdit
command, but for Override/Implement action, one idea is to return a customized command, such asjava.action.overrideMethod
to client. When the command is executed on client, client will send a request to server to get all possible methods from super class or interface first, then prompt to select the target methods, after that, send the selected methods info to server to compute the TextEdit change, and apply change.The text was updated successfully, but these errors were encountered: