Coverage Report - org.webmacro.engine.PropertyMethodBuilder
 
Classes in this File Line Coverage Branch Coverage Complexity
PropertyMethodBuilder
100%
8/8
100%
2/2
2
 
 1  
 /*
 2  
  * Copyright (C) 1998-2000 Semiotek Inc.  All Rights Reserved.
 3  
  *
 4  
  * Redistribution and use in source and binary forms, with or without
 5  
  * modification, are permitted under the terms of either of the following
 6  
  * Open Source licenses:
 7  
  *
 8  
  * The GNU General Public License, version 2, or any later version, as
 9  
  * published by the Free Software Foundation
 10  
  * (http://www.fsf.org/copyleft/gpl.html);
 11  
  *
 12  
  *  or
 13  
  *
 14  
  * The Semiotek Public License (http://webmacro.org/LICENSE.)
 15  
  *
 16  
  * This software is provided "as is", with NO WARRANTY, not even the
 17  
  * implied warranties of fitness to purpose, or merchantability. You
 18  
  * assume all risks and liabilities associated with its use.
 19  
  *
 20  
  * See www.webmacro.org for more information on the WebMacro project.
 21  
  */
 22  
 
 23  
 package org.webmacro.engine;
 24  
 
 25  
 import org.webmacro.Macro;
 26  
 import org.webmacro.util.PropertyMethod;
 27  
 
 28  
 /**
 29  
  * @author justin
 30  
  * @since 13/10/1999
 31  
  */
 32  
 public class PropertyMethodBuilder implements Builder
 33  
 {
 34  
 
 35  
     String _name;
 36  
     ListBuilder _args;
 37  
 
 38  
     public PropertyMethodBuilder (String name, ListBuilder args)
 39  2132
     {
 40  2132
         _name = name;
 41  2132
         _args = args;
 42  2132
     }
 43  
 
 44  
     public Object build (BuildContext bc) throws BuildException
 45  
     {
 46  2128
         Object args = _args.build(bc);
 47  2128
         if (args instanceof Macro)
 48  
         {
 49  1588
             return new PropertyMethod(_name, (Macro) args);
 50  
         }
 51  
         else
 52  
         {
 53  540
             return new PropertyMethod(_name, (Object[]) args);
 54  
         }
 55  
     }
 56  
 
 57  
 
 58  
 }