01: /*
02: * $Id: NativeConstructor.java,v 1.2 2002/09/16 08:05:04 jkl Exp $
03: *
04: * Copyright (c) 2002 Njet Communications Ltd. All Rights Reserved.
05: *
06: * Use is subject to license terms, as defined in
07: * Anvil Sofware License, Version 1.1. See LICENSE
08: * file, or http://njet.org/license-1.1.txt
09: */
10: package anvil.script.compiler;
11:
12: import java.lang.reflect.Method;
13: import anvil.script.Scope;
14: import anvil.doc.Doc;
15: import anvil.script.NativeJava;
16:
17: /**
18: * class NativeConstructor
19: *
20: * @author: Jani Lehtimäki
21: */
22: public class NativeConstructor extends ConstructorBase implements
23: NativeJava {
24:
25: public NativeConstructor(Scope parent, Method method, String name,
26: Object[] parameters, Doc doc) {
27: super(parent, null, method, name, parameters, doc);
28: }
29:
30: }
|