1
2
3
4
5 package ch.qos.logback.classic.boolex;
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 import ch.qos.logback.classic.spi.ILoggingEvent;
16 import static ch.qos.logback.classic.Level.TRACE;
17 import static ch.qos.logback.classic.Level.DEBUG;
18 import static ch.qos.logback.classic.Level.INFO;
19 import static ch.qos.logback.classic.Level.WARN;
20 import static ch.qos.logback.classic.Level.ERROR;
21
22
23
24
25 public class EvaluatorTemplate
26 extends java.lang.Object
27 implements groovy.lang.GroovyObject, IEvaluator
28 {
29 public boolean doEvaluate(ILoggingEvent event) {
30 throw new InternalError("Stubbed method");
31 }
32
33 public groovy.lang.MetaClass getMetaClass() {
34 throw new InternalError("Stubbed method");
35 }
36
37 public void setMetaClass(groovy.lang.MetaClass metaClass) {
38 throw new InternalError("Stubbed method");
39 }
40
41 public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
42 throw new InternalError("Stubbed method");
43 }
44
45 public java.lang.Object getProperty(java.lang.String name) {
46 throw new InternalError("Stubbed method");
47 }
48
49 public void setProperty(java.lang.String name, java.lang.Object value) {
50 throw new InternalError("Stubbed method");
51 }
52 }