javauis/lcdui_akn/javalcdui/javasrc.nokialcdui/com/nokia/mid/ui/TextEditorExtensionAccess.java
branchRCL_3
changeset 83 26b2b12093af
parent 77 7cee158cb8cd
child 84 0553e2305d00
equal deleted inserted replaced
77:7cee158cb8cd 83:26b2b12093af
     1 /*
       
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Touch-support for TextEditor-API
       
    15 *
       
    16 */
       
    17 
       
    18 package com.nokia.mid.ui;
       
    19 
       
    20 import com.nokia.mid.ui.TextEditorTouchControl;
       
    21 
       
    22 /**
       
    23  * This interface provides access to extended functionality related to the TextEditor-API
       
    24  * The object returned by the method {@link com.nokia.mid.ui.TextEditor#createTextEditor(int, int, int, int)} and
       
    25  * {@link com.nokia.mid.ui.TextEditor#createTextEditor(int, int, int, int)} implements this interface.
       
    26  * It depends on the capabilities of the device whether the extensions provided via this interface are
       
    27  * supported or not. For unsupported extensions, the getter-methods of this interface will return null.
       
    28  */
       
    29 public interface TextEditorExtensionAccess
       
    30 {
       
    31 
       
    32     /**
       
    33      * Gets the Touch-extensions of the TextEditor-API. See also {@link TextEditorTouchControl}
       
    34      * @return the extension, or null if the device does not support touch.
       
    35      */
       
    36     public TextEditorTouchControl getTouchControl();
       
    37 
       
    38 }