You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
613 B
43 lines
613 B
/*
|
|
* Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
package javax.swing.text;
|
|
|
|
import javax.swing.plaf.basic.BasicTextUI;
|
|
|
|
/**
|
|
* <p>
|
|
* This class has been deprecated and should no longer be used.
|
|
* The basis of the various TextUI implementations can be found
|
|
* in the javax.swing.plaf.basic package and the class
|
|
* BasicTextUI replaces this class.
|
|
*
|
|
* @deprecated
|
|
*/
|
|
@Deprecated
|
|
public abstract class DefaultTextUI extends BasicTextUI {
|
|
|
|
|
|
}
|