sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/engine/statistic/DllLoad.java
changeset 15 0367d2db2c06
parent 6 f65f740e69f9
equal deleted inserted replaced
14:bb339882c6e9 15:0367d2db2c06
   105 	public void setEndAddress(String newEndAddress) {
   105 	public void setEndAddress(String newEndAddress) {
   106 		Long lValue = Long.parseLong(newEndAddress, 16);
   106 		Long lValue = Long.parseLong(newEndAddress, 16);
   107 		this.endAddress = lValue;
   107 		this.endAddress = lValue;
   108 	}
   108 	}
   109 
   109 
   110 	/**
   110 //	/**
   111 	 * Set load time of this item
   111 //	 * Set load time of this item
   112 	 *
   112 //	 *
   113 	 * @param newLoadTime
   113 //	 * @param newLoadTime
   114 	 *            Time when this dll is loaded.
   114 //	 *            Time when this dll is loaded.
   115 	 */
   115 //	 */
   116 	public void setLoadTime(String newLoadTime) {
   116 //	public void setLoadTime(String newLoadTime) {
   117 		Long lValue = Long.parseLong(newLoadTime, 16);
   117 //		Long lValue = Long.parseLong(newLoadTime, 16);
   118 		this.loadTime = lValue;
   118 //		this.loadTime = lValue;
   119 	}
   119 //	}
       
   120 	
   120 	/**
   121 	/**
   121 	 * Set load time of this item
   122 	 * Set load time of this item
   122 	 *
   123 	 *
   123 	 * @param loadTime
   124 	 * @param loadTime
   124 	 *            Time when this dll is loaded.
   125 	 *            Time when this dll is loaded.
   125 	 */
   126 	 */
   126 	public void setLoadTime(long loadTime) {
   127 	public void setLoadTime(long loadTime) {
   127 		this.loadTime = loadTime;
   128 		this.loadTime = loadTime;
   128 	}
   129 	}
       
   130 	
   129 	/**
   131 	/**
   130 	 * Set unload time of this dll
   132 	 * Set unload time of this dll
   131 	 *
   133 	 *
   132 	 * @param unloadTime
   134 	 * @param unloadTime
   133 	 *            Time when this dll is unloaded.
   135 	 *            Time when this dll is unloaded.