source - returns / sets source value for object $Id$
0001 function h = source(obj, val) 0002 % source - returns / sets source value for object 0003 % 0004 % $Id$ 0005 0006 if nargin > 1 0007 obj.source = val; 0008 h = obj; 0009 else 0010 h = obj.source; 0011 end