static > B linkedHashSet_addWithAutoInit(B set, A a) { if (set == null) set = new LinkedHashSet(); set.add(a); ret set; }