static L web_texts(WebNode node) { ret node == null ? new L : node.texts(); } static L web_texts(Collection l) { L texts = new L(l(l)); if (l != null) for (WebNode n : l) texts.add(web_text(n)); ret texts; }