sysmodelmgr/com.symbian.smt.gui/src/com/symbian/smt/gui/smtwidgets/ValidModelDefinedListener.java
changeset 0 522a326673b6
equal deleted inserted replaced
-1:000000000000 0:522a326673b6
       
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // ${file_name}
       
    15 // 
       
    16 //
       
    17 
       
    18 package com.symbian.smt.gui.smtwidgets;
       
    19 
       
    20 public interface ValidModelDefinedListener {
       
    21 
       
    22 	/**
       
    23 	 * This is the call back method invoked by a ValidObservable object on all
       
    24 	 * ValidModelDefinedListener objects registered with it to inform the
       
    25 	 * listeners of the outcome of validation of a given field in a widget. The
       
    26 	 * listeners are then responsible to set their state accordingly.
       
    27 	 * 
       
    28 	 * @param event
       
    29 	 *            the ValidModelEvent that has been created by the
       
    30 	 *            ValidObservable object and that contains all of the necessary
       
    31 	 *            validation related information.
       
    32 	 */
       
    33 	void validModelDefined(ValidModelEvent event);
       
    34 }