Lines Matching defs:Context
30 class Context {
42 Context() {
47 private Context(String whereJava, String whereC) {
52 Context subcontext(String level) {
53 Context ctx;
55 ctx = new Context(level, level);
57 ctx = new Context(whereJava + "." + level, whereC + "_" + level);
64 private Context cloneContext() {
65 Context ctx = new Context(whereJava, whereC);
71 Context replyReadingSubcontext() {
72 Context ctx = cloneContext();
77 Context commandWritingSubcontext() {
78 Context ctx = cloneContext();
83 Context inEventSubcontext() {
84 Context ctx = cloneContext();