Package org.apache.harmony.awt.text

Examples of org.apache.harmony.awt.text.TextCaret


    /**    
     * @return new text caret associated with this TextComponent
     */
    TextCaret createCaret() {
        TextFactory factory = TextFactory.getTextFactory();
        TextCaret c = factory.createCaret();
        c.setComponent(this);
        return c;
    }
View Full Code Here


    /**    
     * @return new text caret associated with this TextComponent
     */
    TextCaret createCaret() {
        TextFactory factory = TextFactory.getTextFactory();
        TextCaret c = factory.createCaret();
        c.setComponent(this);
        return c;
    }
View Full Code Here

    /**    
     * @return new text caret associated with this TextComponent
     */
    TextCaret createCaret() {
        TextFactory factory = TextFactory.getTextFactory();
        TextCaret c = factory.createCaret();
        c.setComponent(this);
        return c;
    }
View Full Code Here

TOP

Related Classes of org.apache.harmony.awt.text.TextCaret

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.