| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AbstractList |
|
| 1.0;1 |
| 1 | package org.webslinger.ext.wiki.parser; | |
| 2 | ||
| 3 | public abstract class AbstractList extends SimpleNode implements BlockNode { | |
| 4 | protected AbstractList(int id) { | |
| 5 | 0 | super(id); |
| 6 | 0 | } |
| 7 | ||
| 8 | protected AbstractList(Wiki p, int id) { | |
| 9 | 2 | super(p, id); |
| 10 | 2 | } |
| 11 | } |