01: package dclass; 02: 03: /** The metaclass Constructor. **/ 04: public class Constructor extends Invokable { 05: public Constructor(Object modifiers, Object name, Object args, 06: Object body) { 07: this.modifiers = modifiers; 08: this.name = name; 09: this.args = args; 10: this.body = body; 11: } 12: }