1
2
3
4
5 package ch.qos.logback.classic.gaffer;
6
7 import java.lang.*;
8 import java.io.*;
9 import java.net.*;
10 import java.util.*;
11 import groovy.lang.*;
12 import groovy.util.*;
13 import java.math.BigDecimal;
14 import java.math.BigInteger;
15
16
17
18
19 public enum NestingType
20 {
21 NA, SINGLE, AS_COLLECTION;
22
23 public groovy.lang.MetaClass getMetaClass() {
24 throw new InternalError("Stubbed method");
25 }
26
27 public void setMetaClass(groovy.lang.MetaClass metaClass) {
28 throw new InternalError("Stubbed method");
29 }
30
31 public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
32 throw new InternalError("Stubbed method");
33 }
34
35 public java.lang.Object getProperty(java.lang.String name) {
36 throw new InternalError("Stubbed method");
37 }
38
39 public void setProperty(java.lang.String name, java.lang.Object value) {
40 throw new InternalError("Stubbed method");
41 }
42 }