sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/engine/IMemoryActivityModelChangeListener.java
changeset 15 0367d2db2c06
parent 6 f65f740e69f9
equal deleted inserted replaced
14:bb339882c6e9 15:0367d2db2c06
    21 /**
    21 /**
    22  * 
    22  * 
    23  * A change listener for {@link IMemoryActivityModel}
    23  * A change listener for {@link IMemoryActivityModel}
    24  */
    24  */
    25 public interface IMemoryActivityModelChangeListener {
    25 public interface IMemoryActivityModelChangeListener {
    26 	
    26 
    27 	/** 
    27 	/**
    28 	 * callback when data has been added to the model
    28 	 * callback when data has been added to the model and is ready to be used
    29 	 * and is ready to be used
       
    30 	 */
    29 	 */
    31 	public void onProcessesAdded();
    30 	public void onProcessesAdded();
    32 	
    31 
    33 	/**
    32 	/**
    34 	 * callback when a process has been selected
    33 	 * callback when a process has been selected
    35 	 * @param processId The ProcessInfo of the newly selected process
    34 	 * 
       
    35 	 * @param processId
       
    36 	 *            The ProcessInfo of the newly selected process
    36 	 */
    37 	 */
    37 	public void onProcessSelected(ProcessInfo processId);
    38 	public void onProcessSelected(ProcessInfo processId);
    38 
       
    39 }
    39 }