This is a static copy of a profile reportHome
scribe.legendinfo.schema (1 call, 0.000 sec)
Generated 05-Aug-2011 13:03:45 using cpu time.
function in file /usr/local/MATLAB/R2011a/toolbox/matlab/scribe/@scribe/@legendinfo/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 |
39 | pl.AccessFlags.PublicSet = 'of... | 1 | 0 s | 0% |  |
38 | pl.AccessFlags.PublicGet = 'of... | 1 | 0 s | 0% |  |
37 | pl.AccessFlags.Serialize = 'of... | 1 | 0 s | 0% |  |
36 | pl = schema.prop(h, 'PropertyL... | 1 | 0 s | 0% |  |
34 | p.AccessFlags.Init = 'off'; | 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 | 39 |
Non-code lines (comments, blank lines) | 39 |
Code lines (lines that can run) | 0 |
Code lines that did run | 27 |
Code lines that did not run | 0 |
Coverage (did run/can run) | N/A |
Function listing
time calls line
1 function schema
2 %SCHEMA defines the scribe.LEGENDINFO schema
3 %
4
5 % Copyright 1984-2003 The MathWorks, Inc.
6 % $ $ $ $
7
1 8 pkg = findpackage('scribe');
1 9 h = schema.class(pkg, 'legendinfo');
10
11 % object associated with the legendinfo
1 12 p = schema.prop(h,'GObject','MATLAB array');
1 13 p.AccessFlags.Serialize = 'on';
1 14 p.AccessFlags.PublicGet = 'on';
1 15 p.AccessFlags.PublicSet = 'off';
1 16 p.AccessFlags.Init = 'off';
1 17 p.SetFunction = @localSetGObject;
18 % glyph size
1 19 p = schema.prop(h,'GlyphWidth','MATLAB array');
1 20 p.AccessFlags.Init = 'off';
1 21 p.AccessFlags.Serialize = 'on';
1 22 p.AccessFlags.PublicGet = 'on';
1 23 p.AccessFlags.PublicSet = 'on';
1 24 p = schema.prop(h,'GlyphHeight','MATLAB array');
1 25 p.AccessFlags.Init = 'off';
1 26 p.AccessFlags.Serialize = 'on';
1 27 p.AccessFlags.PublicGet = 'on';
1 28 p.AccessFlags.PublicSet = 'on';
29 % children (of type legendinfochild)
1 30 p = schema.prop(h,'GlyphChildren','handle vector');
1 31 p.AccessFlags.Serialize = 'on';
1 32 p.AccessFlags.PublicGet = 'on';
1 33 p.AccessFlags.PublicSet = 'on';
1 34 p.AccessFlags.Init = 'off';
35 % listeners
1 36 pl = schema.prop(h, 'PropertyListeners', 'handle vector');
1 37 pl.AccessFlags.Serialize = 'off';
1 38 pl.AccessFlags.PublicGet = 'off';
1 39 pl.AccessFlags.PublicSet = 'off';
Other subfunctions in this file are not included in this listing.