This is a static copy of a profile reportHome
graphics.panbehavior.schema (1 call, 0.000 sec)
Generated 05-Aug-2011 13:03:35 using cpu time.
function in file /usr/local/MATLAB/R2011a/toolbox/matlab/graphics/@graphics/@panbehavior/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 |
31 | schema.event(cls,'EndDrag'); | 1 | 0 s | 0% |  |
30 | schema.event(cls,'BeginDrag'); | 1 | 0 s | 0% |  |
27 | p.FactoryValue = 'both'; | 1 | 0 s | 0% |  |
26 | p = schema.prop(cls,'Style','S... | 1 | 0 s | 0% |  |
24 | end | 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 | 31 |
Non-code lines (comments, blank lines) | 31 |
Code lines (lines that can run) | 0 |
Code lines that did run | 19 |
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 2004-2006 The MathWorks, Inc.
4
1 5 pk = findpackage('graphics');
1 6 cls = schema.class(pk,'panbehavior');
7
1 8 p = schema.prop(cls,'Enable','bool');
1 9 p.FactoryValue = true;
10
1 11 p = schema.prop(cls,'Serialize','MATLAB array');
1 12 p.FactoryValue = true;
1 13 p.AccessFlags.Serialize = 'off';
14
1 15 p = schema.prop(cls,'Name','string');
1 16 p.AccessFlags.PublicSet = 'off';
1 17 p.AccessFlags.PublicGet = 'on';
1 18 p.FactoryValue = 'Pan';
1 19 p.AccessFlags.Serialize = 'off';
20
21 % Enumeration Style Type
1 22 if (isempty(findtype('StyleChoice')))
1 23 schema.EnumType('StyleChoice',{'horizontal','vertical','both'});
1 24 end
25
1 26 p = schema.prop(cls,'Style','StyleChoice');
1 27 p.FactoryValue = 'both';
28
29 % EVENTS
1 30 schema.event(cls,'BeginDrag');
1 31 schema.event(cls,'EndDrag');