NativeMethod.java :  » Web-Framework » anvil » anvil » script » compiler » Java Open Source

Java Open Source » Web Framework » anvil 
anvil » anvil » script » compiler » NativeMethod.java
/*
 * $Id: NativeMethod.java,v 1.2 2002/09/16 08:05:04 jkl Exp $
 *
 * Copyright (c) 2002 Njet Communications Ltd. All Rights Reserved.
 *
 * Use is subject to license terms, as defined in
 * Anvil Sofware License, Version 1.1. See LICENSE 
 * file, or http://njet.org/license-1.1.txt
 */
package anvil.script.compiler;

import java.lang.reflect.Method;
import anvil.script.Scope;
import anvil.doc.Doc;
import anvil.script.NativeJava;

/**
 * class NativeMethod
 *
 * @author: Jani Lehtimki
 */
public class NativeMethod extends MethodBase implements NativeJava
{

  public NativeMethod(Scope parent, Method method, String name, Object[] parameters, Doc doc)
  {
    super(parent, method, name, parameters, doc);
  }

}

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.