|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
GroovyClass.java | - | 0% | 0% | 0% |
|
1 |
package org.codehaus.groovy.tools;
|
|
2 |
|
|
3 |
public class GroovyClass |
|
4 |
{ |
|
5 |
public static final GroovyClass[] EMPTY_ARRAY = new GroovyClass[ 0 ]; |
|
6 |
|
|
7 |
private String name;
|
|
8 |
private byte[] bytes; |
|
9 |
|
|
10 | 0 |
public GroovyClass(String name,
|
11 |
byte[] bytes)
|
|
12 |
{ |
|
13 | 0 |
this.name = name;
|
14 | 0 |
this.bytes = bytes;
|
15 |
} |
|
16 |
|
|
17 | 0 |
public String getName()
|
18 |
{ |
|
19 | 0 |
return this.name; |
20 |
} |
|
21 |
|
|
22 | 0 |
public byte[] getBytes() |
23 |
{ |
|
24 | 0 |
return this.bytes; |
25 |
} |
|
26 |
} |
|
27 |
|
|
28 |
|
|