function str = maketip(this,tip,info)
%MAKETIP  Build data tips for eventCharView Characteristics.
%
%   INFO is a structure built dynamically by the data tip interface
%   and passed to MAKETIP to facilitate construction of the tip text.

%   Author(s):  
%   Copyright 1986-2004 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $  $Date: 2004/12/26 21:37:41 $
str = {sprintf('Event %s:%s, Time %s',info.Carrier.Name,...
    info.Data.Event.Name,info.Data.Event.getTimeStr{1})};
TipText = str;