jdk/src/share/classes/java/awt/TextComponent.java
changeset 12813 c10ab96dcf41
parent 5506 202f599c92aa
child 13357 6a75209a8aeb
equal deleted inserted replaced
12491:b3a91113026c 12813:c10ab96dcf41
    33 import sun.awt.InputMethodSupport;
    33 import sun.awt.InputMethodSupport;
    34 import java.text.BreakIterator;
    34 import java.text.BreakIterator;
    35 import javax.swing.text.AttributeSet;
    35 import javax.swing.text.AttributeSet;
    36 import javax.accessibility.*;
    36 import javax.accessibility.*;
    37 import java.awt.im.InputMethodRequests;
    37 import java.awt.im.InputMethodRequests;
    38 
    38 import javax.tools.annotation.GenerateNativeHeader;
    39 
    39 
    40 /**
    40 /**
    41  * The <code>TextComponent</code> class is the superclass of
    41  * The <code>TextComponent</code> class is the superclass of
    42  * any component that allows the editing of some text.
    42  * any component that allows the editing of some text.
    43  * <p>
    43  * <p>
    55  *
    55  *
    56  * @author      Sami Shaio
    56  * @author      Sami Shaio
    57  * @author      Arthur van Hoff
    57  * @author      Arthur van Hoff
    58  * @since       JDK1.0
    58  * @since       JDK1.0
    59  */
    59  */
       
    60 /* No native methods here, but the constants are needed in the supporting JNI code */
       
    61 @GenerateNativeHeader
    60 public class TextComponent extends Component implements Accessible {
    62 public class TextComponent extends Component implements Accessible {
    61 
    63 
    62     /**
    64     /**
    63      * The value of the text.
    65      * The value of the text.
    64      * A <code>null</code> value is the same as "".
    66      * A <code>null</code> value is the same as "".