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/Attic/ExtDoc"

Line 4: Line 4:
 
! style="background: #ffdead;" | Selection
 
! style="background: #ffdead;" | Selection
 
! style="background: #ffdead;" | JavaElement
 
! style="background: #ffdead;" | JavaElement
! style="background: #ffdead;" | AstNode
+
! style="background: #ffdead;" | AstNode / Parent
 +
! style="background: #ffdead;" | Location
 
|-
 
|-
! style="background: #efefef;" colspan="3" | CompilationUnitEditor
+
! style="background: #efefef;" colspan="4" | CompilationUnitEditor
 
|-
 
|-
 
| package tes↓t;
 
| package tes↓t;
 
| PackageFragment
 
| PackageFragment
| PackageDeclaration
+
| SimpleName / QualifiedName
 +
| PACKAGE_DECLARATION
 
|-
 
|-
 
| import org.eclipse.swt.widgets.But↓ton;
 
| import org.eclipse.swt.widgets.But↓ton;
 
| ResolvedBinaryType
 
| ResolvedBinaryType
| ImportDeclaration
+
| SimpleName / QualifiedName
 +
| IMPORT_DECLARATION
 
|-
 
|-
 
| import org.eclipse.swt.widg↓ets.Button;
 
| import org.eclipse.swt.widg↓ets.Button;
 
| JarPackageFragment
 
| JarPackageFragment
| ImportDeclaration
+
| SimpleName / QualifiedName
 +
| IMPORT_DECLARATION
 
|-
 
|-
| public class Tes↓t extends Button
+
| public class Tes↓t extends Button implements ISelectionListener
 
| SourceType
 
| SourceType
| TypeDeclaration
+
| SimpleName / TypeDeclaration
 +
| TYPE_DECLARATION
 
|-
 
|-
| public class Test extends Butto↓n
+
| public class Test extends Butto↓n implements ISelectionListener
 
| ResolvedBinaryType
 
| ResolvedBinaryType
| TypeDeclaration
+
| SimpleName / SimpleType
 +
| TYPE_DECLARATION_EXTENDS
 +
|-
 +
| public class Test extends Button implements ISelectionListen↓er
 +
| ResolvedBinaryType
 +
| SimpleName / SimpleType
 +
| TYPE_DECLARATION_IMPLEMENTS
 
|-
 
|-
 
| private Button butto↓n;
 
| private Button butto↓n;
| SourceField
+
| ResolvedBinaryType
| FieldDeclaration
+
| SimpleName / VariableDeclarationFragment
 +
| FIELD_DECLARATION
 
|-
 
|-
 
| private Butto↓n button;
 
| private Butto↓n button;
 
| ResolvedBinaryType
 
| ResolvedBinaryType
| FieldDeclaration
+
| SimpleName / SimpleType
 +
| FIELD_DECLARATION
 
|-
 
|-
| public Test(Composite arg0, int arg↓1)
+
| public Button test(Composite arg0, int arg↓1)
 
| LocalVariable
 
| LocalVariable
| MethodDeclaration
+
| SingleName / SingleVariableDeclaration
 +
| METHOD_DECLARATION
 
|-
 
|-
| public Test(Composit↓e arg0, int arg1)
+
| public Button test(Composit↓e arg0, int arg1)
 
| ResolvedBinaryType
 
| ResolvedBinaryType
| MethodDeclaration
+
| SimpleName / SimpleType
 +
| METHOD_DECLARATION
 
|-
 
|-
| public Tes↓t(Composite arg0, int arg1)
+
| public Button tes↓t(Composite arg0, int arg1)
 
| SourceMethod
 
| SourceMethod
| MethodDeclaration
+
| SimpleName / MethodDeclaration
 +
| METHOD_DECLARATION
 +
|-
 +
| public Butto↓n test(Composite arg0, int arg1)
 +
| ResolvedBinaryType
 +
| SimpleName / SimpleType
 +
| METHOD_DECLARATION
 
|-
 
|-
 
| button.setEnabl↓e()
 
| button.setEnabl↓e()
 
| ResolvedBinaryMethod
 
| ResolvedBinaryMethod
| Block
+
| SimpleName / MethodInvocation
 +
| BLOCK
 
|-
 
|-
 
| butto↓n.setEnable()
 
| butto↓n.setEnable()
 
| LocalVariable
 
| LocalVariable
| Block
+
| SimpleName / MethodInvocation
 +
| BLOCK
 
|-
 
|-
 
| this.butto↓n.setEnable()
 
| this.butto↓n.setEnable()
 
| ResolvedSourceField
 
| ResolvedSourceField
| Block
+
| SimpleName / FieldAccess
 +
| BLOCK
 +
|-
 +
| return butto↓n;
 +
| LocalVariable
 +
| SimpleName / ReturnStatement
 +
| BLOCK
 
|-
 
|-
! style="background: #efefef;" colspan="3" | Package Explorer / JavaElement
+
! style="background: #efefef;" colspan="4" | Package Explorer / JavaElement
 
|-
 
|-
| colspan="3" | JavaProject, PackageFragmentRoot, PackageFragment, CompilationUnit, SourceType, SourceField, SourceMethod
+
| colspan="4" | JavaProject, PackageFragmentRoot, PackageFragment, CompilationUnit, SourceType, SourceField, SourceMethod
 
|-
 
|-
! style="background: #efefef;" colspan="3" | Outline / JavaElement
+
! style="background: #efefef;" colspan="4" | Outline / JavaElement
 
|-
 
|-
| colspan="3" | PackageDeclaration, ImportContainer, ImportDeclaration, SourceType, SourceField, SourceMethod
+
| colspan="4" | PackageDeclaration, ImportContainer, ImportDeclaration, SourceType, SourceField, SourceMethod
 
|}
 
|}

Revision as of 08:13, 28 May 2011

Selection Context

Selection JavaElement AstNode / Parent Location
CompilationUnitEditor
package tes↓t; PackageFragment SimpleName / QualifiedName PACKAGE_DECLARATION
import org.eclipse.swt.widgets.But↓ton; ResolvedBinaryType SimpleName / QualifiedName IMPORT_DECLARATION
import org.eclipse.swt.widg↓ets.Button; JarPackageFragment SimpleName / QualifiedName IMPORT_DECLARATION
public class Tes↓t extends Button implements ISelectionListener SourceType SimpleName / TypeDeclaration TYPE_DECLARATION
public class Test extends Butto↓n implements ISelectionListener ResolvedBinaryType SimpleName / SimpleType TYPE_DECLARATION_EXTENDS
public class Test extends Button implements ISelectionListen↓er ResolvedBinaryType SimpleName / SimpleType TYPE_DECLARATION_IMPLEMENTS
private Button butto↓n; ResolvedBinaryType SimpleName / VariableDeclarationFragment FIELD_DECLARATION
private Butto↓n button; ResolvedBinaryType SimpleName / SimpleType FIELD_DECLARATION
public Button test(Composite arg0, int arg↓1) LocalVariable SingleName / SingleVariableDeclaration METHOD_DECLARATION
public Button test(Composit↓e arg0, int arg1) ResolvedBinaryType SimpleName / SimpleType METHOD_DECLARATION
public Button tes↓t(Composite arg0, int arg1) SourceMethod SimpleName / MethodDeclaration METHOD_DECLARATION
public Butto↓n test(Composite arg0, int arg1) ResolvedBinaryType SimpleName / SimpleType METHOD_DECLARATION
button.setEnabl↓e() ResolvedBinaryMethod SimpleName / MethodInvocation BLOCK
butto↓n.setEnable() LocalVariable SimpleName / MethodInvocation BLOCK
this.butto↓n.setEnable() ResolvedSourceField SimpleName / FieldAccess BLOCK
return butto↓n; LocalVariable SimpleName / ReturnStatement BLOCK
Package Explorer / JavaElement
JavaProject, PackageFragmentRoot, PackageFragment, CompilationUnit, SourceType, SourceField, SourceMethod
Outline / JavaElement
PackageDeclaration, ImportContainer, ImportDeclaration, SourceType, SourceField, SourceMethod

Back to the top