OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="UTF-8"/> | 4 <meta charset="UTF-8"/> |
5 <title>Analysis Server Plugin API Specification</title> | 5 <title>Analysis Server Plugin API Specification</title> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <h1>Analysis Server Plugin API Specification</h1> | 8 <h1>Analysis Server Plugin API Specification</h1> |
9 <h1 style="color:#999999">Version | 9 <h1 style="color:#999999">Version |
10 <version>1.0.0-alpha.0</version> | 10 <version>1.0.0-alpha.0</version> |
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
636 <field name="assists"> | 636 <field name="assists"> |
637 <list> | 637 <list> |
638 <ref>PrioritizedSourceChange</ref> | 638 <ref>PrioritizedSourceChange</ref> |
639 </list> | 639 </list> |
640 <p> | 640 <p> |
641 The assists that are available at the given location. | 641 The assists that are available at the given location. |
642 </p> | 642 </p> |
643 </field> | 643 </field> |
644 </result> | 644 </result> |
645 </request> | 645 </request> |
646 <request method="getAvailableRefactorings"> | 646 <request method="getAvailableRefactorings" experimental="true"> |
647 <p> | 647 <p> |
648 Used to request a list of the kinds of refactorings that are valid for the | 648 Used to request a list of the kinds of refactorings that are valid for the |
649 given selection in the given file. | 649 given selection in the given file. |
650 </p> | 650 </p> |
651 <params> | 651 <params> |
652 <field name="file"> | 652 <field name="file"> |
653 <ref>FilePath</ref> | 653 <ref>FilePath</ref> |
654 <p> | 654 <p> |
655 The file containing the code on which the refactoring would be based. | 655 The file containing the code on which the refactoring would be based. |
656 </p> | 656 </p> |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 <field name="fixes"> | 708 <field name="fixes"> |
709 <list> | 709 <list> |
710 <ref>AnalysisErrorFixes</ref> | 710 <ref>AnalysisErrorFixes</ref> |
711 </list> | 711 </list> |
712 <p> | 712 <p> |
713 The fixes that are available for the errors at the given offset. | 713 The fixes that are available for the errors at the given offset. |
714 </p> | 714 </p> |
715 </field> | 715 </field> |
716 </result> | 716 </result> |
717 </request> | 717 </request> |
718 <request method="getRefactoring"> | 718 <request method="getRefactoring" experimental="true"> |
719 <p> | 719 <p> |
720 Used to request the changes required to perform a refactoring. | 720 Used to request the changes required to perform a refactoring. |
721 </p> | 721 </p> |
722 <params> | 722 <params> |
723 <field name="kind"> | 723 <field name="kind"> |
724 <ref>RefactoringKind</ref> | 724 <ref>RefactoringKind</ref> |
725 <p> | 725 <p> |
726 The kind of refactoring to be performed. | 726 The kind of refactoring to be performed. |
727 </p> | 727 </p> |
728 </field> | 728 </field> |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
914 </p> | 914 </p> |
915 </field> | 915 </field> |
916 <field name="change"> | 916 <field name="change"> |
917 <ref>SourceChange</ref> | 917 <ref>SourceChange</ref> |
918 <p> | 918 <p> |
919 The change with which the relevance is associated. | 919 The change with which the relevance is associated. |
920 </p> | 920 </p> |
921 </field> | 921 </field> |
922 </object> | 922 </object> |
923 </type> | 923 </type> |
924 <type name="RefactoringFeedback"> | 924 <type name="RefactoringFeedback" experimental="true"> |
925 <p> | 925 <p> |
926 An abstract superclass of all refactoring feedbacks. | 926 An abstract superclass of all refactoring feedbacks. |
927 </p> | 927 </p> |
928 <object> | 928 <object> |
929 </object> | 929 </object> |
930 </type> | 930 </type> |
931 <type name="RefactoringOptions"> | 931 <type name="RefactoringOptions" experimental="true"> |
932 <p> | 932 <p> |
933 An abstract superclass of all refactoring options. | 933 An abstract superclass of all refactoring options. |
934 </p> | 934 </p> |
935 <object> | 935 <object> |
936 </object> | 936 </object> |
937 </type> | 937 </type> |
938 <type name="RequestError"> | 938 <type name="RequestError"> |
939 <p> | 939 <p> |
940 An indication of a problem with the execution of the server, | 940 An indication of a problem with the execution of the server, |
941 typically in response to a request. | 941 typically in response to a request. |
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1540 The name that the element should have after the refactoring. | 1540 The name that the element should have after the refactoring. |
1541 </p> | 1541 </p> |
1542 </field> | 1542 </field> |
1543 </options> | 1543 </options> |
1544 </refactoring> | 1544 </refactoring> |
1545 </refactorings> | 1545 </refactorings> |
1546 <h2 class="domain"><a name="index">Index</a></h2> | 1546 <h2 class="domain"><a name="index">Index</a></h2> |
1547 <index></index> | 1547 <index></index> |
1548 </body> | 1548 </body> |
1549 </html> | 1549 </html> |
OLD | NEW |