https://github.com/markiewb/idea-gwt-navigator-plugin
IntelliJ IDEA plugin with navigator extension for the Google Web Toolkit
https://github.com/markiewb/idea-gwt-navigator-plugin
Last synced: 9 months ago
JSON representation
IntelliJ IDEA plugin with navigator extension for the Google Web Toolkit
- Host: GitHub
- URL: https://github.com/markiewb/idea-gwt-navigator-plugin
- Owner: markiewb
- License: apache-2.0
- Created: 2017-08-08T20:38:18.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-06-25T21:18:56.000Z (almost 6 years ago)
- Last Synced: 2025-02-08T13:42:24.091Z (over 1 year ago)
- Language: Java
- Homepage: https://plugins.jetbrains.com/plugin/9912-navigator-extension-for-google-web-toolkit
- Size: 170 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# idea-gwt-navigator-plugin
You can jump between GWT services using the "Related Symbol..." action.
Compatible to the IntelliJ IDEA Community Edition.
It allows you to
- Jump from com.foo.client.(I)MyService to com.foo.client.(I)MyServiceAsync and com.foo.server.MyServiceImpl
- Jump from com.foo.client.(I)MyServiceAsync to com.foo.client.(I)MyService and com.foo.server.MyServiceImpl
- Jump from com.foo.server.MyServiceImpl to com.foo.client.(I)MyService and com.foo.client.(I)MyServiceAsync
If the caret is within/on a class, then you can jump from/to the related async/impl class.
If the caret is within/on a method, then you can jump from/to the related async/impl method.
Changelog:
- 2.2.1: Fixed compatibility warnings from JetBrains #5
- 2.2: Fixed: Group results by prod and test source roots #4
- 2.1: Fixed: Non-RemoteServlet-Implementation not found #3
- 2.0: Detect more variants (by use of type information) #2
- 1.2: Jump from/to IMyService(Async) to MyServiceImpl
- 1.1: Jump from/to corresponding async/impl method
- 1.0: Initial version - jump to files (regardless which method is currently active)