blob: 82307ae25e05afeb8ec84f04ffebf2543d2a1da3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package cuchaz.enigma.json;
import java.util.List;
public class JsonConstructor {
private String signature;
private List<JsonArgument> args;
private boolean statics;
public JsonConstructor(String signature, List<JsonArgument> args, boolean statics) {
this.signature=signature;
this.args = args;
this.statics = statics;
}
}
|