www.gusucode.com > mbctools 工具箱 matlab 源码程序 > mbctools/@mdevtestplan/notes.m

    function out = notes(T,newNote)
%notes get and set test plan notes

%  Copyright 2015-2015 The MathWorks, Inc. and Ford Global Technologies, Inc.

if nargin==1
    out = T.Notes;
else
   T.Notes = newNote;
   xregpointer(T);
   out = T;
end