Skip to content
Snippets Groups Projects
Commit 8ce86b82 authored by tu's avatar tu
Browse files

added renewPage() method to createFrame() method

parent aadac8a7
No related branches found
No related tags found
1 merge request!65Rede wiedergabe dev
Pipeline #
...@@ -861,8 +861,9 @@ public class RedeWiedergabeView extends AEditorSubordinateViewPart { ...@@ -861,8 +861,9 @@ public class RedeWiedergabeView extends AEditorSubordinateViewPart {
for (AnnotationFS frame : editor.getCas().getAnnotationIndex(frameType)){ for (AnnotationFS frame : editor.getCas().getAnnotationIndex(frameType)){
if (frame.getFeatureValueAsString(frameIDFeat).equals("")){ if (frame.getFeatureValueAsString(frameIDFeat).equals("")){
JFrame jFrame = new JFrame("Information"); JFrame jFrame = new JFrame("Information");
JOptionPane.showMessageDialog(jFrame, "ID is missing for frame with start: " + " " + frame.getBegin() + ".", "Attention", JOptionPane.WARNING_MESSAGE); JOptionPane.showMessageDialog(jFrame, "ID is missing for frame with start = " + " " + frame.getBegin() + ".", "Attention", JOptionPane.WARNING_MESSAGE);
frameIdFlag = true; frameIdFlag = true;
renewPage();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment