Skip to content

Commit e982ca9

Browse files
committed
fix editor linking, single select, state restore and drill-down controls
rework TreeNodeFactory into ContentProvider, LabelProvider, ViewerFilter #1186 #1187
1 parent f0d0bde commit e982ca9

File tree

6 files changed

+238
-365
lines changed

6 files changed

+238
-365
lines changed

checkstyleConfig.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@
744744
</module>
745745
<module name="RegexpSingleline">
746746
<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 -->
747-
<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;)" />
747+
<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;)" />
748748
<property name="fileExtensions" value="groovy" />
749749
<property name="id" value="groovyStringLiterals" />
750750
</module>

ide/org.codehaus.groovy.eclipse.astviews/plugin.xml

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
class="org.codehaus.groovy.eclipse.astviews.ASTView"
1212
icon="platform:/plugin/org.codehaus.groovy.eclipse/$nl$/groovy16.png"
1313
id="org.codehaus.groovy.eclipse.astviews.ASTView"
14-
name="Groovy AST Viewer">
14+
name="Groovy AST Viewer"
15+
restorable="false">
16+
<description>
17+
Inspect the Abstract Syntax Tree (AST) of a Groovy source
18+
</description>
1519
</view>
1620
</extension>
1721
</plugin>

0 commit comments

Comments
 (0)