Procedure3.java :  » Scripting » Nice » gnu » mapping » Java Open Source

Java Open Source » Scripting » Nice 
Nice » gnu » mapping » Procedure3.java
package gnu.mapping;

/**
 * Abstract class for 3-argument Scheme procedures..
 * @author  Per Bothner
 */

public abstract class Procedure3 extends Procedure
{
  public Procedure3 ()
  {
    super();
  }

  public Procedure3(java.lang.String n)
  {
    super(n);
  }

  public int numArgs() { return 0x3003; }

  public Object apply0 ()
  {
    throw new WrongArguments(this, 0);
  }

  public Object apply1 (Object arg1)
  {
    throw new WrongArguments(this, 1);
  }

  public Object apply2 (Object arg1, Object arg2)
  {
    throw new WrongArguments(this, 2);
  }

  public abstract Object apply3 (Object arg1, Object arg2, Object arg3) throws Throwable;

  public Object apply4 (Object arg1, Object arg2, Object arg3, Object arg4)
  {
    throw new WrongArguments(this, 4);
  }

  public Object applyN (Object[] args) throws Throwable
  {
    if (args.length != 3)
      throw new WrongArguments(this, args.length);
    return apply3 (args[0], args[1], args[2]);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.