1 | if (qName.equals(Constants.THREADINFO)) {↵ | | |
|
2 | if (stacktree.peek() instanceof ThreadInfo) {↵ | | 1 | if (stacktree.peek() instanceof Status) {↵
|
3 | stacktree.pop();↵ | | 2 | stacktree.pop();↵
|
4 | }↵ | | 3 | }↵
|
5 | } else if (qName.equals(Constants.REQUESTINFO)) {↵ | | 4 | } else if (qName.equals(Constants.JVM)) {↵
|
6 | if (stacktree.peek() instanceof RequestInfo) {↵ | | 5 | if (stacktree.peek() instanceof Jvm) {↵
|
7 | stacktree.pop();↵ | | 6 | stacktree.pop();↵
|
8 | }↵ | | 7 | }↵
|
9 | } else if (qName.equals(Constants.WORKERS)) {↵ | | 8 | } else if (qName.equals(Constants.MEMORY)) {↵
|
10 | if (stacktree.peek() instanceof Workers) {↵ | | 9 | if (stacktree.peek() instanceof Memory) {↵
|
11 | stacktree.pop();↵ | | 10 | stacktree.pop();↵
|
12 | }↵ | | 11 | }↵
|
13 | } else if (qName.equals(Constants.WORKER)) {↵ | | 12 | } else if (qName.equals(Constants.CONNECTOR)) {↵
|
14 | if (stacktree.peek() instanceof Worker || stacktree.peek() instanceof Worker) {↵ | | 13 | if (stacktree.peek() instanceof Connector || stacktree.peek() instanceof Connector) {↵
|
15 | stacktree.pop();↵ | | 14 | stacktree.pop();↵
|
16 | }↵ | | 15 | }
|
17 | } | | | |