01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc;
05:
06: import javax.swing.event.DocumentEvent;
07: import javax.swing.event.DocumentListener;
08:
09: public class DocumentAdapter implements DocumentListener {
10: public void insertUpdate(DocumentEvent e) {/**/
11: }
12:
13: public void removeUpdate(DocumentEvent e) {/**/
14: }
15:
16: public void changedUpdate(DocumentEvent e) {/**/
17: }
18: }
|