コード例 #1
0
ファイル: DeviceEntry.java プロジェクト: 0857bally/Flashtool
 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;
 }