All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ochafik.swing.SimpleDocumentAdapter Maven / Gradle / Ivy

package com.ochafik.swing;

import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;

public abstract class SimpleDocumentAdapter implements DocumentListener {
	public abstract void updated(DocumentEvent e);
	public void changedUpdate(DocumentEvent e) {
		updated(e);	
	}

	public void insertUpdate(DocumentEvent e) {
		updated(e);				
	}

	public void removeUpdate(DocumentEvent e) {
		updated(e);	
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy