Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Recommenders/CodeSearch"

(Some additional ideas of queries)
m (Replaced content with "Deprecated.")
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
= Code Recommenders - Code Search Engine =
+
Deprecated.
'''If Siri were a code search engine...''' what would you ask it?
+
 
+
This page collects your demands on what search questions a code search engine should be able to answer. Do you have some frequently reoccurring searches you ask your code search engine? Then add it on this page (no matter how complex or simple the question is). Note, JDT's code search offers a quite sophisticated code search engine that allows you to specify many different options such as
+
 
+
* [Search String] ''what literal'' to look for
+
* [Limit to] ''what kind'' or ''where in code'' you are looking for:
+
** any location
+
** references
+
** declarations
+
** implementor
+
* [Match Location] ''where in code on statement level'' the search literal should match in a compilation unit (specified in Match Location Dialog),
+
** in (any kind of) declaration
+
*** Imports
+
*** super type declarations
+
*** annotations
+
*** field types
+
*** local variable types
+
*** method return types
+
*** method parameter types
+
*** thrown exception types
+
** in (any kind of) parameterized types
+
*** type parameter bounds
+
*** wildcard bounds
+
*** type arguments
+
** in expressions:
+
*** cast expressions
+
*** catch clauses
+
*** instanceof expressions
+
*** class instance creations
+
*** thrown exception types
+
* [Search for] ''which type'' of java element you are looking for when searching for a string:
+
** Type
+
** Constructor
+
** Method
+
** Field
+
** Package
+
* [Search in] ''where''' to search for potential hits (sources, required projects, JRE libraries, App libraries), and
+
* [Scope] which further limits the ''Search in'' clause.
+
 
+
Quite a lot of different locations you can specify where JDT is searching for the occurrence of the given literal. This is, however, sometimes not enough if you want to use more complex queries. What do you have in mind? What query would you like to ask Siri?
+
 
+
'''Siri, ...'''
+
 
+
'''... who calls this method? '''
+
(solvable by JDT call hierarchy)
+
 
+
'''... who calls these 3 methods together in a method? '''
+
 
+
'''... who uses this type in his own code? '''
+
(as in JDT's  References workspace search)
+
 
+
'''... who uses these 3 types together in a method?'''
+
 
+
'''... who extends this type in his own code? '''
+
(as in JDT class hierarchy)
+
 
+
'''... tell me which public methods exist in my libraries that return an instance of type X? '''
+
 
+
'''... tell me which classes exist in my project that offer static fields or methods? '''
+
 
+
'''... tell me which classes exist in my project that offer static fields or methods of (return) type IWorkbench?'''
+
 
+
'''... find all Type/Method/Constructor/Package/Field declarations that are named like "someName*" '''
+
(JDT search)
+
 
+
'''... find all references in $location of Type/Method/Constructor/Package/Field declarations named like "someName*" '''
+
(JDT search)
+
 
+
'''... find all implementors of Type/Method named like "someName*" '''
+
(JDT search)
+
 
+
'''... find all static methods with "IJavaElement" in the parameter list, that return "String" and contain the case-insensitive word "label" in its name'''
+
 
+
'''... find all methods with a "String" as the only parameter, that return a "String" and contain the word "html" as well as either "strip" or "remove" in its name'''
+
 
+
'''... find all methods that override the method "bla" of "SomeInterface"'''
+
 
+
'''... find all methods (in class/package xyz) which return an instance stored in a local variable where the name of said variable isn't "result"''' (for cleaning up code)
+
 
+
'''... find all places in the code where the nesting level of loops and if statements is greater than four''' (find deeply nested for/if/while constructs)
+
 
+
'''... tell me where instanceof is used with type Xyz'''
+
 
+
'''... find all loops that iterate over type Xyz'''
+
 
+
'''... tell me where an exception is thrown that uses a certain type when building the message argument'''
+
 
+
'''... give me a list of all methods that contain a SuppressWarning annotations to suppress "rawtype"'''
+
 
+
'''... find all code that converts between bytes and chars without giving an encoding''' (must find Stream <-> Reader/Writer plus <tt>String.getBytes()</tt> and <tt>new String(byte[])</tt> calls plus some calls in <tt>IOUtils</tt>).
+
 
+
[[Category:Recommenders|Code Search]]
+

Latest revision as of 09:12, 19 April 2017

Deprecated.

Back to the top