run.java :  » Scripting » Pnuts » org » pnuts » lib » Java Open Source

Java Open Source » Scripting » Pnuts 
Pnuts » org » pnuts » lib » run.java
/*
 * @(#)run.java 1.2 04/12/06
 *
 * Copyright (c) 1997-2004 Sun Microsystems, Inc. All Rights Reserved.
 *
 * See the file "LICENSE.txt" for information on usage and redistribution
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 */
package org.pnuts.lib;

import pnuts.lang.*;

public class run extends PnutsFunction {

  public run(){
    super("run");
  }

  public boolean defined(int nargs){
    return nargs == 1;
  }

  protected Object exec(Object args[], Context context){
    if (args.length == 1){
      return ((Executable)args[0]).run(context);
    } else {
      undefined(args, context);
      return null;
    }
  }

  public String toString(){
    return "function run(executable)";
  }
}
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.