├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .idea └── gradle.xml ├── .run ├── Run IDE for UI Tests.run.xml ├── Run IDE with Plugin.run.xml ├── Run Plugin Tests.run.xml ├── Run Plugin Verification.run.xml └── Run Qodana.run.xml ├── LICENSE ├── README.md ├── Retrofit Rest Client-2.3.0.zip ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── pic ├── GIF.gif ├── GIF1.gif ├── s1.png ├── s2.png ├── s3.png └── s4.png ├── settings.gradle.kts └── src ├── main ├── kotlin │ ├── cn │ │ └── vove7 │ │ │ └── plugin │ │ │ └── rest │ │ │ ├── action │ │ │ ├── OpenDlFileAction.kt │ │ │ ├── RunAction.kt │ │ │ └── StopAction.kt │ │ │ ├── filetype │ │ │ ├── HeaderPanelComponent.kt │ │ │ ├── RequestParser.kt │ │ │ ├── RestClientPlugin.kt │ │ │ ├── RestCodeStyleSettings.kt │ │ │ ├── RestCodeStyleSettingsProvider.kt │ │ │ ├── RestColorSettingsPage.kt │ │ │ ├── RestCommenter.kt │ │ │ ├── RestFile.kt │ │ │ ├── RestFileType.kt │ │ │ ├── RestFileTypeFactory.kt │ │ │ ├── RestHighlighter.kt │ │ │ ├── RestHighlighterFactory.kt │ │ │ ├── RestHostInjector.kt │ │ │ ├── RestLanguage.kt │ │ │ ├── RestLexer.kt │ │ │ ├── RestLexerAdapter.kt │ │ │ ├── RestParserDefinition.kt │ │ │ └── RestProjectComponent.kt │ │ │ ├── flex │ │ │ ├── Rest.bnf │ │ │ └── Rest.flex │ │ │ ├── https │ │ │ └── TrustAllCerts.kt │ │ │ ├── lineprovider │ │ │ ├── RetrofitLineJavaMarkerProvider.kt │ │ │ ├── RetrofitLineKotlinMarkerProvider.kt │ │ │ └── RetrofitLineMarkerProvider.kt │ │ │ ├── model │ │ │ ├── RequestModel.kt │ │ │ └── ResponseModel.kt │ │ │ ├── parser │ │ │ └── RestParser.kt │ │ │ ├── psi │ │ │ ├── RestComments.kt │ │ │ ├── RestEBad.kt │ │ │ ├── RestEHeader.kt │ │ │ ├── RestEMethod.kt │ │ │ ├── RestEParam.kt │ │ │ ├── RestESeparator.kt │ │ │ ├── RestEUrl.kt │ │ │ ├── RestElement.kt │ │ │ ├── RestElementType.kt │ │ │ ├── RestHeaders.kt │ │ │ ├── RestOptions.kt │ │ │ ├── RestParams.kt │ │ │ ├── RestRequest.kt │ │ │ ├── RestRequestBody.kt │ │ │ ├── RestResponse.kt │ │ │ ├── RestResponseBody.kt │ │ │ ├── RestTokenType.kt │ │ │ ├── RestTypes.kt │ │ │ ├── RestVisitor.kt │ │ │ ├── RestWs.kt │ │ │ └── impl │ │ │ │ ├── ResponseLiteralEscaper.kt │ │ │ │ ├── RestCommentsImpl.kt │ │ │ │ ├── RestEBadImpl.kt │ │ │ │ ├── RestEHeaderImpl.kt │ │ │ │ ├── RestEMethodImpl.kt │ │ │ │ ├── RestEParamImpl.kt │ │ │ │ ├── RestESeparatorImpl.kt │ │ │ │ ├── RestEUrlImpl.kt │ │ │ │ ├── RestElementImpl.kt │ │ │ │ ├── RestHeadersImpl.kt │ │ │ │ ├── RestOptionsImpl.kt │ │ │ │ ├── RestParamsImpl.kt │ │ │ │ ├── RestRequestBodyImpl.kt │ │ │ │ ├── RestRequestImpl.kt │ │ │ │ ├── RestResponseBodyImpl.kt │ │ │ │ ├── RestResponseImpl.kt │ │ │ │ └── RestWsImpl.kt │ │ │ └── tool │ │ │ ├── EnvConfig.kt │ │ │ ├── Ext.kt │ │ │ ├── Log.kt │ │ │ ├── RequestExecutor.kt │ │ │ └── Requests.kt │ └── com │ │ └── github │ │ └── vove7 │ │ └── retrofitrestclient2 │ │ ├── MyBundle.kt │ │ ├── listeners │ │ └── MyProjectManagerListener.kt │ │ └── services │ │ ├── MyApplicationService.kt │ │ └── MyProjectService.kt └── resources │ ├── META-INF │ ├── plugin.xml │ ├── pluginIcon.svg │ └── schema.xml │ └── messages │ └── MyBundle.properties └── test ├── kotlin └── com │ └── github │ └── vove7 │ └── retrofitrestclient2 │ └── MyPluginTest.kt └── testData └── rename ├── foo.xml └── foo_after.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | .qodana 4 | build 5 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.run/Run IDE for UI Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/.run/Run IDE for UI Tests.run.xml -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/.run/Run Plugin Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Verification.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/.run/Run Plugin Verification.run.xml -------------------------------------------------------------------------------- /.run/Run Qodana.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/.run/Run Qodana.run.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/README.md -------------------------------------------------------------------------------- /Retrofit Rest Client-2.3.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/Retrofit Rest Client-2.3.0.zip -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/gradlew.bat -------------------------------------------------------------------------------- /pic/GIF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/pic/GIF.gif -------------------------------------------------------------------------------- /pic/GIF1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/pic/GIF1.gif -------------------------------------------------------------------------------- /pic/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/pic/s1.png -------------------------------------------------------------------------------- /pic/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/pic/s2.png -------------------------------------------------------------------------------- /pic/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/pic/s3.png -------------------------------------------------------------------------------- /pic/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/pic/s4.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "retrofit-rest-client" 2 | -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/action/OpenDlFileAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/action/OpenDlFileAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/action/RunAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/action/RunAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/action/StopAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/action/StopAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/HeaderPanelComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/HeaderPanelComponent.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RequestParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RequestParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestClientPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestClientPlugin.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestCodeStyleSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestCodeStyleSettings.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestCodeStyleSettingsProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestCodeStyleSettingsProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestColorSettingsPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestColorSettingsPage.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestCommenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestCommenter.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestFile.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestFileType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestFileType.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestFileTypeFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestFileTypeFactory.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestHighlighter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestHighlighter.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestHighlighterFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestHighlighterFactory.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestHostInjector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestHostInjector.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestLanguage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestLanguage.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestLexer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestLexer.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestLexerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestLexerAdapter.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestParserDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestParserDefinition.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/filetype/RestProjectComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/filetype/RestProjectComponent.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/flex/Rest.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/flex/Rest.bnf -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/flex/Rest.flex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/flex/Rest.flex -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/https/TrustAllCerts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/https/TrustAllCerts.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/lineprovider/RetrofitLineJavaMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/lineprovider/RetrofitLineJavaMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/lineprovider/RetrofitLineKotlinMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/lineprovider/RetrofitLineKotlinMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/lineprovider/RetrofitLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/lineprovider/RetrofitLineMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/model/RequestModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/model/RequestModel.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/model/ResponseModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/model/ResponseModel.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/parser/RestParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/parser/RestParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestComments.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestComments.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestEBad.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestEBad.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestEHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestEHeader.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestEMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestEMethod.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestEParam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestEParam.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestESeparator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestESeparator.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestEUrl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestEUrl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestElement.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestElementType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestElementType.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestHeaders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestHeaders.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestOptions.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestParams.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestRequestBody.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestRequestBody.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestResponseBody.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestResponseBody.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestTokenType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestTokenType.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestTypes.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestVisitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestVisitor.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/RestWs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/RestWs.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/ResponseLiteralEscaper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/ResponseLiteralEscaper.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestCommentsImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestCommentsImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEBadImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEBadImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEHeaderImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEHeaderImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEMethodImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEMethodImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEParamImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEParamImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestESeparatorImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestESeparatorImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEUrlImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestEUrlImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestElementImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestElementImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestHeadersImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestHeadersImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestOptionsImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestOptionsImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestParamsImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestParamsImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestRequestBodyImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestRequestBodyImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestRequestImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestRequestImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestResponseBodyImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestResponseBodyImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestResponseImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestResponseImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestWsImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/psi/impl/RestWsImpl.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/tool/EnvConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/tool/EnvConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/tool/Ext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/tool/Ext.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/tool/Log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/tool/Log.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/tool/RequestExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/tool/RequestExecutor.kt -------------------------------------------------------------------------------- /src/main/kotlin/cn/vove7/plugin/rest/tool/Requests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/cn/vove7/plugin/rest/tool/Requests.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/vove7/retrofitrestclient2/MyBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/com/github/vove7/retrofitrestclient2/MyBundle.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/vove7/retrofitrestclient2/listeners/MyProjectManagerListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/com/github/vove7/retrofitrestclient2/listeners/MyProjectManagerListener.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/vove7/retrofitrestclient2/services/MyApplicationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/com/github/vove7/retrofitrestclient2/services/MyApplicationService.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/vove7/retrofitrestclient2/services/MyProjectService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/kotlin/com/github/vove7/retrofitrestclient2/services/MyProjectService.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/META-INF/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/resources/META-INF/schema.xml -------------------------------------------------------------------------------- /src/main/resources/messages/MyBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/main/resources/messages/MyBundle.properties -------------------------------------------------------------------------------- /src/test/kotlin/com/github/vove7/retrofitrestclient2/MyPluginTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/test/kotlin/com/github/vove7/retrofitrestclient2/MyPluginTest.kt -------------------------------------------------------------------------------- /src/test/testData/rename/foo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/test/testData/rename/foo.xml -------------------------------------------------------------------------------- /src/test/testData/rename/foo_after.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krosxx/retrofit-rest-client/HEAD/src/test/testData/rename/foo_after.xml --------------------------------------------------------------------------------