// //////////////////////////////////////
// Identification
// //////////////////////////////////////
public String title() {
final TitleBuffer buf = new TitleBuffer();
buf.append(getEventType().name()).append(" ").append(getTargetStr());
if(getEventType()==EventType.ACTION_INVOCATION) {
buf.append(" ").append(getMemberIdentifier());
}
buf.append(",").append(getState());
return buf.toString();
}