javacommons/security/tsrc/data/javasrc/invalidjars/InnerClassImplementsProtectedInterface/myClass.java
branchRCL_3
changeset 19 04becd199f91
child 46 4376525cdefb
equal deleted inserted replaced
16:f5050f1da672 19:04becd199f91
       
     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 
       
    18 package mypackage;
       
    19 
       
    20 public class myClass
       
    21 {
       
    22     private class myInnerClass
       
    23             implements com.nokia.mj.impl.security.midp.common.UserSecuritySettings
       
    24     {
       
    25 
       
    26         public String getName()
       
    27         {
       
    28             return null;
       
    29         }
       
    30 
       
    31         public int getCurrentInteractionMode()
       
    32         {
       
    33             return 0;
       
    34         }
       
    35 
       
    36         public int[] getAllowedInteractionModes()
       
    37         {
       
    38             return null;
       
    39         }
       
    40         public boolean isInteractionModeAllowed(int interactionMode)
       
    41         {
       
    42             return false;
       
    43         }
       
    44         public boolean getBlanketPrompt()
       
    45         {
       
    46             return true;
       
    47         }
       
    48     }
       
    49 }