Help for this page

Select Code to Download


  1. or download this
    sub new {
     
    ...
        if ((!defined($this)) || (!defined($tree)) || (!defined($messageNu
    +m))) {
            die "invalid argument list during function call!\n";
        }
    
  2. or download this
    
    sub new {
    ...
    
        # check mandatory paramters
        assertValueIsDefined($this, $tree, $messageNum);
    
  3. or download this
    sub assertNamedParameters {
     
    ...
    
        return(@parameterValues);
    }