function initialize(Constr)
%INITIALIZE   Initializes root-locus natural frequency constraint object

%   Author(s): N. Hickey
%   Copyright 1986-2001 The MathWorks, Inc. 
%   $Revision: 1.1.6.2 $  $Date: 2004/12/10 19:32:47 $

% Add generic listeners and mouse event callbacks
Constr.addlisteners;

% Add @pzfrequency-specific listeners
p = [Constr.findprop('Ts');...
        Constr.findprop('Frequency');...
        Constr.findprop('Type')]; 
PropL = handle.listener(Constr,p,'PropertyPostSet',@update);
PropL.CallbackTarget = Constr;
Constr.addlisteners(PropL);
