sysperfana/perfinvestigator/com.nokia.carbide.cpp.pi/src/com/nokia/carbide/cpp/internal/pi/model/ProfiledBinary.java
changeset 5 844b047e260d
parent 2 b9ab3b238396
equal deleted inserted replaced
4:615035072f7e 5:844b047e260d
    17 
    17 
    18 package com.nokia.carbide.cpp.internal.pi.model;
    18 package com.nokia.carbide.cpp.internal.pi.model;
    19 
    19 
    20 public class ProfiledBinary extends ProfiledGeneric
    20 public class ProfiledBinary extends ProfiledGeneric
    21 {
    21 {
    22     public ProfiledBinary()
    22     public ProfiledBinary(int cpuNumber, int graphCount)
    23     {
    23     {
    24         super();
    24         super(cpuNumber, graphCount);
    25    }
    25    }
    26    
    26  
    27     public String toString(int graphIndex)
    27     //unused?
    28     {
    28 //    public String toString(int graphIndex)
    29     	if (this.isEnabled(graphIndex))
    29 //    {
    30     	{
    30 //    	if (this.isEnabled(graphIndex))
    31     		return "true  " + this.getAverageLoadValueString(graphIndex) + getNameString(); //$NON-NLS-1$
    31 //    	{
    32 	  	}
    32 //    		return "true  " + this.getAverageLoadValueString(graphIndex) + getNameString(); //$NON-NLS-1$
    33 		else
    33 //	  	}
    34 		{
    34 //		else
    35 	      	return "false " + this.getAverageLoadValueString(graphIndex) + getNameString(); //$NON-NLS-1$
    35 //		{
    36 		}
    36 //	      	return "false " + this.getAverageLoadValueString(graphIndex) + getNameString(); //$NON-NLS-1$
    37     }
    37 //		}
       
    38 //    }
    38     
    39     
    39 }
    40 }