diff -r bb339882c6e9 -r 0367d2db2c06 sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/engine/CallstackItem.java --- a/sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/engine/CallstackItem.java Tue Aug 24 12:10:03 2010 +0300 +++ b/sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/engine/CallstackItem.java Tue Aug 24 12:16:27 2010 +0300 @@ -21,9 +21,9 @@ * Contains information of one memory leak item. Information is parsed from * atool.exe generated XML file so we can assume that all the information is * valid and no other checking is needed. - * + * * @author kihe - * + * */ public class CallstackItem extends BaseItem { @@ -39,10 +39,9 @@ /** Flag to inform that is results created for urel builds. */ private boolean urelBuild = false; - /** * Gets file name. - * + * * @return File name */ public final String getFileName() { @@ -51,7 +50,7 @@ /** * Gets function name. - * + * * @return Function name */ public final String getFunctionName() { @@ -60,7 +59,7 @@ /** * Gets leak line number. - * + * * @return Leak line number */ public final int getLeakLineNumber() { @@ -69,7 +68,7 @@ /** * Is results created for the urel build. - * + * * @return True if results are created for the urel build otherwise false */ public final boolean isUrelBuild() { @@ -78,7 +77,7 @@ /** * Sets cpp file name which contains memory leaks. - * + * * @param newFileName * File name */ @@ -88,7 +87,7 @@ /** * Sets function name. - * + * * @param newFunctionName * Function name */ @@ -98,7 +97,7 @@ /** * Sets leak line number. - * + * * @param newLeakLineNumber * Leak line number */ @@ -108,7 +107,7 @@ /** * Sets urel build flag. - * + * * @param build * Is project built with urel command */ @@ -118,13 +117,13 @@ /** * Checks that at least one needed information is available - * - * @return False if at least one needed information is available(not empty) otherwise - * True + * + * @return False if at least one needed information is available(not empty) + * otherwise True */ public boolean isEmpty() { - if ( !checkData() && (fileName == null || ("").equals(fileName)) - && (functionName == null || ("").equals(functionName) ) ) { + if (!checkData() && (fileName == null || ("").equals(fileName)) + && (functionName == null || ("").equals(functionName))) { return true; } return false;