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"

(Initial framework, soon to be filled with content.)
 
Line 1: Line 1:
== ExtDoc Project Plan ==
+
== Editor Context ==
  
This page will be used to develop general ideas as well as concrete specifications about the upcoming '''ExtDoc''' feature of the [[Recommenders]] project.
+
{| border="1" cellpadding="6" cellspacing="0"
 
+
! style="background: #ffdead;" | Selection
== Concepts ==
+
! style="background: #ffdead;" | JavaElement
 
+
! style="background: #ffdead;" | AstNode
=== Views ===
+
|-
 
+
! style="background: #efefef;" | CompilationUnitEditor
...
+
! style="background: #efefef;" |
 
+
! style="background: #efefef;" |
=== Pop-Ups ===
+
|-
 
+
| package tes
...
+
| PackageFragment
 
+
| PackageDeclaration
=== Settings ===
+
|-
 
+
| import org.eclipse.swt.widgets.But
...
+
| ResolvedBinaryType
 
+
| ImportDeclaration
== Editor-Contexts ==
+
|-
 
+
| import org.eclipse.swt.widg
...
+
| JarPackageFragment
 
+
| ImportDeclaration
== Potential Risks ==
+
|-
 
+
| public class Tes
...
+
| SourceType
 +
| TypeDeclaration
 +
|-
 +
| public class Test extends Butto
 +
| ResolvedBinaryType
 +
| TypeDeclaration
 +
|-
 +
| private Button butto
 +
| SourceField
 +
| FieldDeclaration
 +
|-
 +
| private Butto
 +
| ResolvedBinaryType
 +
| FieldDeclaration
 +
|-
 +
| public Test(Composite arg0, int arg
 +
| LocalVariable
 +
| MethodDeclaration
 +
|-
 +
| public Test(Composit
 +
| ResolvedBinaryType
 +
| MethodDeclaration
 +
|-
 +
| public Tes
 +
| SourceMethod
 +
| MethodDeclaration
 +
|-
 +
| button.setEnabl
 +
| ResolvedBinaryMethod
 +
| Block
 +
|-
 +
| butto
 +
| LocalVariable
 +
| Block
 +
|}

Revision as of 19:26, 27 May 2011

Editor Context

Selection JavaElement AstNode
CompilationUnitEditor
package tes PackageFragment PackageDeclaration
import org.eclipse.swt.widgets.But ResolvedBinaryType ImportDeclaration
import org.eclipse.swt.widg JarPackageFragment ImportDeclaration
public class Tes SourceType TypeDeclaration
public class Test extends Butto ResolvedBinaryType TypeDeclaration
private Button butto SourceField FieldDeclaration
private Butto ResolvedBinaryType FieldDeclaration
public Test(Composite arg0, int arg LocalVariable MethodDeclaration
public Test(Composit ResolvedBinaryType MethodDeclaration
public Tes SourceMethod MethodDeclaration
button.setEnabl ResolvedBinaryMethod Block
butto LocalVariable Block

Back to the top