mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
moved to util
This commit is contained in:
+4
-1
@@ -18,18 +18,21 @@ package com.intellij.ui;
|
||||
import javax.swing.event.DocumentEvent;
|
||||
import javax.swing.event.DocumentListener;
|
||||
|
||||
/**
|
||||
/**
|
||||
* @author cdr
|
||||
*/
|
||||
public abstract class DocumentAdapter implements DocumentListener {
|
||||
@Override
|
||||
public void insertUpdate(DocumentEvent e) {
|
||||
textChanged(e);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeUpdate(DocumentEvent e) {
|
||||
textChanged(e);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void changedUpdate(DocumentEvent e) {
|
||||
textChanged(e);
|
||||
}
|
||||
Reference in New Issue
Block a user