This is a static copy of a profile reportHome
graphics.ploteditbehavior.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/@ploteditbehavior/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 |
68 | p.AccessFlags.Serialize = 'off... | 1 | 0 s | 0% |  |
67 | p.FactoryValue = true; | 1 | 0 s | 0% |  |
66 | p = schema.prop(cls,'Serialize... | 1 | 0 s | 0% |  |
64 | p.FactoryValue = true; | 1 | 0 s | 0% |  |
63 | p = schema.prop(cls,'EnableDel... | 1 | 0 s | 0% |  |
All other lines | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Children (called functions)
No childrenCode Analyzer results
Coverage results
[ Show coverage for parent directory ]
Total lines in function | 68 |
Non-code lines (comments, blank lines) | 68 |
Code lines (lines that can run) | 0 |
Code lines that did run | 35 |
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-2006 The MathWorks, Inc.
4
1 5 pk = findpackage('graphics');
1 6 cls = schema.class(pk,'ploteditbehavior');
7
1 8 p = schema.prop(cls,'Name','string');
1 9 p.AccessFlags.PublicSet = 'off';
1 10 p.AccessFlags.PublicGet = 'on';
1 11 p.FactoryValue = 'Plotedit';
12
13 % Indicates if an object is dragable and resizeable
1 14 p = schema.prop(cls,'EnableMove','bool');
1 15 p.FactoryValue = true;
16
17 % Indicates if an object is dragable by clicking in the interior
1 18 p = schema.prop(cls,'AllowInteriorMove','bool');
1 19 p.FactoryValue = false;
20
21 % Indicates if an object is selectable
1 22 p = schema.prop(cls,'EnableSelect','bool');
1 23 p.FactoryValue = true;
24
25 % Callback for mouse-over cursor control
1 26 p = schema.prop(cls,'MouseOverFcn','MATLAB array');
1 27 p.FactoryValue = [];
28
29 % Callback for plot-edit button down
1 30 p = schema.prop(cls,'ButtonDownFcn','MATLAB array');
1 31 p.FactoryValue = [];
32
33 % Callback for plot-edit button up
1 34 p = schema.prop(cls,'ButtonUpFcn','MATLAB array');
1 35 p.FactoryValue = [];
36
37 % Indicates object should keep context menu in plotedit mode
1 38 p = schema.prop(cls,'KeepContextMenu','MATLAB array');
1 39 p.FactoryValue = false;
40
41 % Callback for plot-edit mouse movement - set this when you
42 % need custom motion or drag events while in plotedit mode.
1 43 p = schema.prop(cls,'MouseMotionFcn','MATLAB array');
1 44 p.FactoryValue = [];
45
46 % Indicates if an object is visible to plotedit - overrides all
47 % above settings
1 48 p = schema.prop(cls,'Enable','bool');
1 49 p.FactoryValue = true;
50
1 51 listener = handle.listener(cls,p,'PropertyPostSet',@doEnableAction);
1 52 setappdata(0,'PloteditBehaviorEnableListener',listener);
53
54 % Enable copy-to-clipboard action to copy this object (shared by cut)
1 55 p = schema.prop(cls,'EnableCopy','bool');
1 56 p.FactoryValue = true;
57
58 % Enable paste-from-clipboard action to paste into container
1 59 p = schema.prop(cls,'EnablePaste','bool');
1 60 p.FactoryValue = true;
61
62 % Enable delete action
1 63 p = schema.prop(cls,'EnableDelete','bool');
1 64 p.FactoryValue = true;
65
1 66 p = schema.prop(cls,'Serialize','MATLAB array');
1 67 p.FactoryValue = true;
1 68 p.AccessFlags.Serialize = 'off';
Other subfunctions in this file are not included in this listing.