Skip to content

Commit

Permalink
fix editor linking, single select, state restore and drill-down controls
Browse files Browse the repository at this point in the history
rework TreeNodeFactory into ContentProvider, LabelProvider, ViewerFilter

#1186 #1187
  • Loading branch information
eric-milles committed Nov 3, 2020
1 parent f0d0bde commit 9722692
Show file tree
Hide file tree
Showing 6 changed files with 234 additions and 365 deletions.
2 changes: 1 addition & 1 deletion checkstyleConfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@
</module>
<module name="RegexpSingleline">
<property name="message" value="Single quotation marks should be used for simple string literals" /><!-- ^(?:\s{4})*+(?!//|[/\s]\*|\|) tries to exclude comments or multi-line string continuation -->
<property name="format" value="^(?:\s{4})*+(?!//|[/\s]\*|\|)(?:&apos;[^&apos;]*&apos;|&quot;[^&quot;]*\$[^&quot;]*&quot;|[^&quot;])*+(&quot;{2}(?!&quot;)|&quot;(?:\\&quot;|[^\$&quot;])+&quot;(?!\s*:)|(?&lt;=\bcase\s{1,9})&quot;(?:\\&quot;|[^\$&quot;])+&quot;)" />
<property name="format" value="^(?:\s{4})*+(?!//|[/\s]\*|\|)(?:&apos;[^&apos;]*&apos;|&quot;[^&quot;]*\$[^&quot;]*&quot;|[^&quot;])*+((?&lt;!\\)&quot;{2}(?!&quot;)|&quot;(?:\\&quot;|[^\$&quot;])+&quot;(?!\s*:)|(?&lt;=\bcase\s{1,9})&quot;(?:\\&quot;|[^\$&quot;])+&quot;)" />
<property name="fileExtensions" value="groovy" />
<property name="id" value="groovyStringLiterals" />
</module>
Expand Down
6 changes: 5 additions & 1 deletion ide/org.codehaus.groovy.eclipse.astviews/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
class="org.codehaus.groovy.eclipse.astviews.ASTView"
icon="platform:/plugin/org.codehaus.groovy.eclipse/$nl$/groovy16.png"
id="org.codehaus.groovy.eclipse.astviews.ASTView"
name="Groovy AST Viewer">
name="Groovy AST Viewer"
restorable="false">
<description>
Provides navigation for the Abstract Syntax Tree (AST) of a Groovy source
</description>
</view>
</extension>
</plugin>
Loading

0 comments on commit 9722692

Please sign in to comment.