DocumentListenerEditing.java

1
package com.jsql.view.swing.text.listener;
2
3
import javax.swing.event.DocumentEvent;
4
import javax.swing.event.DocumentListener;
5
6
/**
7
 * Listener for processing keyboard input.
8
 * Used for example to process tampering, sql engine,
9
 * or encoding when keyboard input is entered.
10
 */
11
public abstract class DocumentListenerEditing implements DocumentListener {
12
13
    public abstract void process();
14
    
15
    @Override
16
    public void changedUpdate(DocumentEvent e) {
17 1 1. changedUpdate : removed call to com/jsql/view/swing/text/listener/DocumentListenerEditing::process → NO_COVERAGE
        this.process();
18
    }
19
    
20
    @Override
21
    public void removeUpdate(DocumentEvent e) {
22 1 1. removeUpdate : removed call to com/jsql/view/swing/text/listener/DocumentListenerEditing::process → NO_COVERAGE
        this.process();
23
    }
24
    
25
    @Override
26
    public void insertUpdate(DocumentEvent e) {
27 1 1. insertUpdate : removed call to com/jsql/view/swing/text/listener/DocumentListenerEditing::process → NO_COVERAGE
        this.process();
28
    }
29
}

Mutations

17

1.1
Location : changedUpdate
Killed by : none
removed call to com/jsql/view/swing/text/listener/DocumentListenerEditing::process → NO_COVERAGE

22

1.1
Location : removeUpdate
Killed by : none
removed call to com/jsql/view/swing/text/listener/DocumentListenerEditing::process → NO_COVERAGE

27

1.1
Location : insertUpdate
Killed by : none
removed call to com/jsql/view/swing/text/listener/DocumentListenerEditing::process → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.16.1