This is a static copy of a profile reportHome
graphics.datacursorbehavior.schema (1 call, 0.000 sec)
Generated 05-Aug-2011 13:03:36 using cpu time.
function in file /usr/local/MATLAB/R2011a/toolbox/matlab/graphics/@graphics/@datacursorbehavior/schema.m
Copy to new window for comparing multiple runs
Parents (calling functions)
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
27 | p.AccessFlags.Serialize = 'off... | 1 | 0 s | 0% |  |
26 | p.FactoryValue = true; | 1 | 0 s | 0% |  |
25 | p = schema.prop(cls,'Serialize... | 1 | 0 s | 0% |  |
23 | p.FactoryValue = true; | 1 | 0 s | 0% |  |
22 | p = schema.prop(cls,'Enable','... | 1 | 0 s | 0% |  |
All other lines | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Children (called functions)
No childrenCode Analyzer results
No Code Analyzer messages.Coverage results
[ Show coverage for parent directory ]
Total lines in function | 27 |
Non-code lines (comments, blank lines) | 27 |
Code lines (lines that can run) | 0 |
Code lines that did run | 21 |
Code lines that did not run | 0 |
Coverage (did run/can run) | N/A |
Function listing
time calls line
1 function schema
2
3 % Copyright 2003-2008 The MathWorks, Inc.
4
1 5 pk = findpackage('graphics');
1 6 cls = schema.class(pk,'datacursorbehavior');
1 7 p = schema.prop(cls,'Name','string');
1 8 p.AccessFlags.PublicSet = 'off';
1 9 p.AccessFlags.PublicGet = 'on';
1 10 p.FactoryValue = 'DataCursor';
11
1 12 schema.prop(cls,'StartDragFcn','MATLAB callback');
1 13 schema.prop(cls,'EndDragFcn','MATLAB callback');
1 14 schema.prop(cls,'UpdateFcn','MATLAB callback');
1 15 schema.prop(cls,'CreateFcn','MATLAB callback');
1 16 schema.prop(cls,'StartCreateFcn','MATLAB callback');
1 17 schema.prop(cls,'UpdateDataCursorFcn','MATLAB callback');
1 18 schema.prop(cls,'MoveDataCursorFcn','MATLAB callback');
1 19 p = schema.prop(cls,'CreateNewDatatip','bool');
1 20 p.FactoryValue = false;
1 21 p.Description = 'True will create a new datatip for every mouse click';
1 22 p = schema.prop(cls,'Enable','bool');
1 23 p.FactoryValue = true;
24
1 25 p = schema.prop(cls,'Serialize','MATLAB array');
1 26 p.FactoryValue = true;
1 27 p.AccessFlags.Serialize = 'off';