org.hackystat.projectbrowser.page.sensordata
Class SdtSummary

java.lang.Object
  extended by org.hackystat.projectbrowser.page.sensordata.SdtSummary
All Implemented Interfaces:
java.io.Serializable

public class SdtSummary
extends java.lang.Object
implements java.io.Serializable

A simple class containing a summary of a single SDT instance.

Author:
Philip Johnson
See Also:
Serialized Form

Constructor Summary
SdtSummary(java.lang.String sdtName, java.lang.String tool, long count)
          Construct this instance.
 
Method Summary
 long getCount()
          Get the number of times it occurred.
 java.lang.String getSdtName()
          Get the sdt name.
 java.lang.String getTool()
          The tool responsible for generating these instances.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SdtSummary

public SdtSummary(java.lang.String sdtName,
                  java.lang.String tool,
                  long count)
Construct this instance.

Parameters:
sdtName - The SDT name.
tool - The tool that generated instances with this SDT.
count - The number of instances of this type and tool.
Method Detail

getSdtName

public java.lang.String getSdtName()
Get the sdt name.

Returns:
The sdt name.

getCount

public long getCount()
Get the number of times it occurred.

Returns:
The count of sdt instances of this type.

getTool

public java.lang.String getTool()
The tool responsible for generating these instances.

Returns:
The tool that generated these instances.