Mercurial > hg > ltpda
view m-toolbox/classes/@paramValue/display.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% DISPLAY display a parameter value %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: DISPLAY display a parameter value % Is called for the parameter value object when the semicolon is not used. % % CALL: paramValue(1, {pi}, 0) % txt = display(paramValue(1, {pi}, 0)); % % VERSION: $Id: display.m,v 1.4 2011/02/18 16:48:53 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = display(varargin) objs = [varargin{:}]; txt = {}; MAX_DISP = 60; for ii = 1:numel(objs) banner = sprintf('---- paramValue %d ----', ii); txt{end+1} = banner; %%%%%%%%%%%%%%%%%%%% Add Property 'key' %%%%%%%%%%%%%%%%%%%% if (objs(ii).valIndex >= 1) txt{end+1} = sprintf('used value: %s', utils.helper.val2str(objs(ii).getVal, 60)); txt{end+1} = ' '; end options = utils.helper.val2str(objs(ii).options, MAX_DISP); txt{end+1} = sprintf(' val index: %s', mat2str(objs(ii).valIndex)); txt{end+1} = sprintf(' options: %s', options); txt{end+1} = sprintf(' selection: %s', paramValue.getSelectionMode(objs(ii).selection)); names = fieldnames(objs(ii).property); for nn = 1:numel(names) txt{end+1} = sprintf('%10s: %s', names{nn}, utils.helper.val2str(objs(ii).property.(names{nn}))); end banner_end(1:length(banner)) = '-'; txt{end+1} = banner_end; end %%% Prepare output if nargout == 0 for ii=1:length(txt) disp(sprintf(txt{ii})); end elseif nargout == 1 varargout{1} = txt; end end