javauis/amms_qt/javasrc/javax/microedition/amms/control/EffectControl.java
branchRCL_3
changeset 24 0fd27995241b
equal deleted inserted replaced
20:f9bb0fca356a 24:0fd27995241b
       
     1 /*
       
     2 * Copyright (c) 2009 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:
       
    15 *
       
    16 */
       
    17 package javax.microedition.amms.control;
       
    18 
       
    19 import javax.microedition.media.*;
       
    20 
       
    21 /**
       
    22  * Please refer JSR 234 for more details.
       
    23  */
       
    24 public interface EffectControl extends javax.microedition.media.Control
       
    25 {
       
    26 
       
    27     /**
       
    28      * Please refer JSR 234 for more details.
       
    29      */
       
    30     public static final int SCOPE_LIVE_ONLY = 1;
       
    31 
       
    32     /**
       
    33      * Please refer JSR 234 for more details.
       
    34      */
       
    35     public static final int SCOPE_RECORD_ONLY = 2;
       
    36 
       
    37     /**
       
    38      * Please refer JSR 234 for more details.
       
    39      */
       
    40     public static final int SCOPE_LIVE_AND_RECORD = 3;
       
    41 
       
    42 
       
    43     /**
       
    44      * Please refer JSR 234 for more details.
       
    45      */
       
    46     public void setEnabled(boolean enable);
       
    47 
       
    48     /**
       
    49      * Please refer JSR 234 for more details.
       
    50      */
       
    51     public boolean isEnabled();
       
    52 
       
    53     /**
       
    54      * Please refer JSR 234 for more details.
       
    55      */
       
    56     public void setScope(int scope) throws MediaException;
       
    57 
       
    58     /**
       
    59      * Please refer JSR 234 for more details.
       
    60      */
       
    61     public int getScope();
       
    62 
       
    63     /**
       
    64      * Please refer JSR 234 for more details.
       
    65      */
       
    66     public void setEnforced(boolean enforced);
       
    67 
       
    68 
       
    69     /**
       
    70      * Please refer JSR 234 for more details.
       
    71      */
       
    72     public boolean isEnforced();
       
    73 
       
    74     /**
       
    75      * Please refer JSR 234 for more details.
       
    76      */
       
    77     void setPreset(String preset);
       
    78 
       
    79     /**
       
    80      * Please refer JSR 234 for more details.
       
    81      */
       
    82     public String getPreset();
       
    83 
       
    84     /**
       
    85      * Please refer JSR 234 for more details.
       
    86      */
       
    87     public String[] getPresetNames();
       
    88 }