view test/@Gork/set.m @ 9381:f9ab19428cd8

* run-octave.in: Exclude @-files from path. Remove CVS exclusions. * test: Add class directories for testing. * ov-class.cc: Add tests.
author Robert T. Short <octave@phaselockedsystems.com>
date Tue, 23 Jun 2009 14:13:47 -0400
parents
children d9c8916bb9dd
line wrap: on
line source

function [ s ] = set( s, varargin )

  propArgs = varargin;
  while (length(propArgs) >= 2)
    propName  = propArgs{1};
    propValue = propArgs{2};
    propArgs  = propArgs(3:end);
    switch propName
      case 'cork'
	if(isa(propValue,'Cork'))
          s.Cork = propValue;
	else
	  s.Cork = set(s.Cork, 'click',propValue);
	end
      case 'gark'
        s.gark = propValue;
      otherwise
        % Note that get/set for multiple parents is hard.  We only do one
        % branch of the parent tree just to test this stuff out.
        s.Dork = set(s.Dork, propName, propValue);
    end
  end

end