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
kallimachos
Athen
Commits
f8bbfab7
Commit
f8bbfab7
authored
Feb 22, 2018
by
Markus Krug
Browse files
maps work as expected
parent
a9354772
Changes
1
Hide whitespace changes
Inline
Side-by-side
de.uniwue.mk.athen/bundles/de.uniwue.mk.kall.athen.goldstandardAnalyzer/src/de/uniwue/mk/kall/athen/goldstandardAnalyzer/GoldstandardAnalyzer.java
View file @
f8bbfab7
...
...
@@ -296,12 +296,17 @@ public class GoldstandardAnalyzer extends AEditorSubordinateViewPart {
editor
.
removeAnnotations
(
toDelete
);
for
(
AnnotationFS
anno
:
toDelete
)
{
editor
.
getCas
().
removeFsFromIndexes
(
anno
);
}
//
for (AnnotationFS anno : toDelete) {
//
editor.getCas().removeFsFromIndexes(anno);
//
}
}
public
void
deleteAnnotations
()
{
//reset maps
this
.
fnMap
.
clear
();
this
.
fpMap
.
clear
();
this
.
tpMap
.
clear
();
List
<
AnnotationFS
>
annoList
=
new
ArrayList
<>();
AnnotationIndex
<
AnnotationFS
>
annotationIndex
=
editor
.
getCas
().
getAnnotationIndex
(
tpType
);
...
...
@@ -321,7 +326,11 @@ public class GoldstandardAnalyzer extends AEditorSubordinateViewPart {
while
(
iterator2
.
hasNext
())
{
annoList
.
add
((
AnnotationFS
)
iterator2
.
next
());
}
deleteAnnotations
(
annoList
.
toArray
(
new
AnnotationFS
[
0
]));
for
(
AnnotationFS
a
:
annoList
)
{
editor
.
getCas
().
removeFsFromIndexes
(
a
);
}
editor
.
updateWidget
();
// deleteAnnotations(annoList.toArray(new AnnotationFS[0]));
}
public
void
compareTypes
()
{
...
...
@@ -401,6 +410,7 @@ public class GoldstandardAnalyzer extends AEditorSubordinateViewPart {
}
public
void
createMap
()
{
this
.
m
=
new
HashMap
<>();
m
.
putAll
(
tpMap
);
m
.
putAll
(
fpMap
);
m
.
putAll
(
fnMap
);
...
...
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