1 /* 2 * @(#)DefaultTextUI.java 1.88 04/05/18 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 package javax.swing.text; 8 9 import javax.swing.plaf.basic.BasicTextUI; 10 11 /** 12 * <p> 13 * This class has been deprecated and should no longer be used. 14 * The basis of the various TextUI implementations can be found 15 * in the javax.swing.plaf.basic package and the class 16 * BasicTextUI replaces this class. 17 * 18 * @deprecated 19 */ 20 @Deprecated 21 public abstract class DefaultTextUI extends BasicTextUI { 22 23 24 } 25 26