sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/engine/IMemoryActivityModelChangeListener.java
changeset 1 1050670c6980
child 6 f65f740e69f9
equal deleted inserted replaced
0:5ad7ad99af01 1:1050670c6980
       
     1 /*
       
     2  * Copyright (c) 2008-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:  Definitions for the class IMemoryActivityModelChangeListener
       
    15  *
       
    16  */
       
    17 package com.nokia.s60tools.analyzetool.engine;
       
    18 
       
    19 import com.nokia.s60tools.analyzetool.engine.statistic.ProcessInfo;
       
    20 
       
    21 /**
       
    22  * 
       
    23  * A change listener for {@link IMemoryActivityModel}
       
    24  */
       
    25 public interface IMemoryActivityModelChangeListener {
       
    26 	
       
    27 	/** 
       
    28 	 * callback when data has been added to the model
       
    29 	 * and is ready to be used
       
    30 	 */
       
    31 	public void onProcessesAdded();
       
    32 	
       
    33 	/**
       
    34 	 * callback when a process has been selected
       
    35 	 * @param ProcessInfo The ProcessInfo of the newly selected process
       
    36 	 */
       
    37 	public void onProcessSelected(ProcessInfo processId);
       
    38 
       
    39 }