Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
af3
AF3
Commits
2f7c421c
Commit
2f7c421c
authored
Mar 18, 2020
by
Simon Barner
Browse files
Merge branch 'master' of
https://git.fortiss.org/af3/af3.git
into 3943
parents
fe09f731
bde09a80
Changes
2
Hide whitespace changes
Inline
Side-by-side
org.fortiss.af3.expression.ui/src/org/fortiss/af3/expression/ui/editor/fx/.ratings
View file @
2f7c421c
DataDictionaryFXEditor.java 225c54161a107a8f17caa1f3ffdaee607ba19cfd GREEN
DataDictionaryFXEditorBinding.java 02fd7a3dfde670b9cfd09a783c090833444c418d GREEN
DataDictionaryFXEditorContentProvider.java
855cde53505172d1bf5743b9b4f53aaa50548962
GREEN
DataDictionaryFXEditorContentProvider.java
fb4e6ecacda004d3302279b2cce7fc58cd36524c
GREEN
DataDictionaryFXEditorUIProvider.java 8d274efce83461d51a705938bc3dcd93bbf38107 GREEN
DataDictionaryFXEvaluator.java 55cbb923079b04ff66a7679904ec1c77a5a0b917 GREEN
DataDictionaryFXEvaluatorBinding.java aab93436c2b25c6b8673cec7526e2d40756c1e10 GREEN
org.fortiss.af3.expression.ui/src/org/fortiss/af3/expression/ui/editor/fx/DataDictionaryFXEditorContentProvider.java
View file @
2f7c421c
...
...
@@ -71,11 +71,12 @@ final class DataDictionaryFXEditorContentProvider extends DynamicTreeContentProv
if
(
eo
instanceof
INamedCommentedElement
)
{
INamedCommentedElement
nce
=
(
INamedCommentedElement
)
eo
;
String
name
=
nce
.
getName
();
if
(
name
!=
null
&&
name
.
contains
(
filterValue
))
{
String
effectiveFilter
=
filterValue
.
toLowerCase
();
if
(
name
!=
null
&&
name
.
toLowerCase
().
contains
(
effectiveFilter
))
{
return
true
;
}
String
comment
=
nce
.
getComment
();
return
comment
!=
null
&&
comment
.
contains
(
filterValue
);
return
comment
!=
null
&&
comment
.
toLowerCase
().
contains
(
effectiveFilter
);
}
return
false
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment