public Models getUpdatableModels(boolean withemptycustid) { Models m = new Models(this); Iterator ivariants = getVariantList().iterator(); while (ivariants.hasNext()) { ModelUpdater mu = new ModelUpdater(this, (String) ivariants.next()); if (mu.canCheck(withemptycustid)) { m.put(mu.getModel(), mu); } } return m; }