javamanager/javainstaller/installer/javasrc/com/nokia/mj/impl/installer/utils/PropertyListener.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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 package com.nokia.mj.impl.installer.utils;
       
    20 
       
    21 /**
       
    22  * Interface for listening property value changes.
       
    23  *
       
    24  * @see PropertyProvider
       
    25  */
       
    26 public interface PropertyListener
       
    27 {
       
    28     /**
       
    29      * Called when property value is changed.
       
    30      * This method must return quickly.
       
    31      *
       
    32      * @param aCategory property category
       
    33      * @param aKey property key
       
    34      * @param aValue property value
       
    35      */
       
    36     public void valueChanged(int aCategory, int aKey, int aValue);
       
    37 }