01: package org.codehaus.groovy.tools;
02:
03: public class GroovyClass {
04: public static final GroovyClass[] EMPTY_ARRAY = new GroovyClass[0];
05:
06: private String name;
07: private byte[] bytes;
08:
09: public GroovyClass(String name, byte[] bytes) {
10: this .name = name;
11: this .bytes = bytes;
12: }
13:
14: public String getName() {
15: return this .name;
16: }
17:
18: public byte[] getBytes() {
19: return this.bytes;
20: }
21: }
|