|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectwt.util.TraceTimingEntry
This class holds data for a single Trace Timing entry.
Supported API: false
Extendable: false
Field Summary | |
private String |
className
|
private static String |
CLASSNAME
|
private static char |
COUNT_DELIMITER
|
private Object |
info
|
private int |
level
|
private String |
name
|
private static char |
NAME_DELIMITER
|
private String |
nameKey
|
private static String |
RESOURCE
|
private long |
timeMillis
|
Constructor Summary | |
TraceTimingEntry(long a_timeMillis,
String a_className,
String a_name,
Object a_info,
int a_level)
Constructs a instance using the specified parameters. |
Method Summary | |
String |
getClassName()
Gets the value of the attribute: className; The name of the class associated with this entry. |
String |
getCountKey(int a_count)
Returns a key based on the entry's key and the specified count value. |
Object |
getInfo()
Gets the value of the attribute: info; Informative message associated with this entry. |
int |
getLevel()
Gets the value of the attribute: level; Call level. |
String |
getName()
Gets the value of the attribute: name; The name associated with this entry. |
String |
getNameKey()
Gets the value of the attribute: nameKey; Unique key representation of the name of this entry. |
static String |
getNameKeyFromCountKey(String a_countKey)
Returns an entry name key based on the specified count key. |
long |
getTimeMillis()
Gets the value of the attribute: timeMillis; Time in milliseconds. |
abstract boolean |
isBegin()
Gets the value of the attribute: begin; Indicates whether this is a begin(true) or end(false) entry. |
abstract boolean |
isBreakInFlow()
Gets the value of the attribute: breakInFlow; Indicates whether this entry indicates a break in flow (true) or a normal end(false). |
void |
setInfo(Object a_Info)
Sets the value of the attribute: info; Informative message associated with this entry. |
String |
toString()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
private static final String RESOURCE
private static final String CLASSNAME
private long timeMillis
private String className
private String name
private Object info
private int level
private static final char COUNT_DELIMITER
private static final char NAME_DELIMITER
private transient String nameKey
Constructor Detail |
public TraceTimingEntry(long a_timeMillis, String a_className, String a_name, Object a_info, int a_level)
a_timeMillis
- Time in milliseconds. If less than zero, then the current system time is used.a_className
- The name of the class associated with this entry.a_name
- The name associated with this entry.a_info
- Informative message associated with this entry.a_level
- Indicates the call level of the entry.Method Detail |
public long getTimeMillis()
public abstract boolean isBegin()
public String getClassName()
public String getName()
public Object getInfo()
public void setInfo(Object a_Info)
a_Info
- public int getLevel()
public String getNameKey()
public abstract boolean isBreakInFlow()
public String getCountKey(int a_count)
a_count
- Count to use in constructing the key.
public static String getNameKeyFromCountKey(String a_countKey)
a_countKey
- Count key to parse.
public String toString()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |