public void deleteClearTopDepByTenantIdx(long TenantId) { CFBamScopeByTenantIdxKey key = schema.getBackingStore().getFactoryScope().newTenantIdxKey(); key.setRequiredTenantId(TenantId); if (indexByTenantIdx == null) { indexByTenantIdx = new HashMap<CFBamScopeByTenantIdxKey, Map<CFBamScopePKey, ICFBamClearTopDepObj>>(); } if (indexByTenantIdx.containsKey(key)) { Map<CFBamScopePKey, ICFBamClearTopDepObj> dict = indexByTenantIdx.get(key); schema .getBackingStore() .getTableClearTopDep() .deleteClearTopDepByTenantIdx(schema.getAuthorization(), TenantId); Iterator<ICFBamClearTopDepObj> iter = dict.values().iterator(); ICFBamClearTopDepObj obj; List<ICFBamClearTopDepObj> toForget = new LinkedList<ICFBamClearTopDepObj>(); while (iter.hasNext()) { obj = iter.next(); toForget.add(obj); } iter = toForget.iterator(); while (iter.hasNext()) { obj = iter.next(); obj.forget(true); } indexByTenantIdx.remove(key); } else { schema .getBackingStore() .getTableClearTopDep() .deleteClearTopDepByTenantIdx(schema.getAuthorization(), TenantId); } }
public void forgetClearTopDepByContTblIdx(long TenantId, long ContTableId) { if (indexByContTblIdx == null) { return; } CFBamClearTopDepByContTblIdxKey key = schema.getBackingStore().getFactoryClearTopDep().newContTblIdxKey(); key.setRequiredTenantId(TenantId); key.setRequiredContTableId(ContTableId); if (indexByContTblIdx.containsKey(key)) { Map<CFBamScopePKey, ICFBamClearTopDepObj> mapContTblIdx = indexByContTblIdx.get(key); if (mapContTblIdx != null) { List<ICFBamClearTopDepObj> toForget = new LinkedList<ICFBamClearTopDepObj>(); ICFBamClearTopDepObj cur = null; Iterator<ICFBamClearTopDepObj> iter = mapContTblIdx.values().iterator(); while (iter.hasNext()) { cur = iter.next(); toForget.add(cur); } iter = toForget.iterator(); while (iter.hasNext()) { cur = iter.next(); cur.forget(true); } } indexByContTblIdx.remove(key); } }
public ICFBamClearTopDepObj readClearTopDepByUNameIdx( long TenantId, long ContTableId, String Name, boolean forceRead) { if (indexByUNameIdx == null) { indexByUNameIdx = new HashMap<CFBamClearTopDepByUNameIdxKey, ICFBamClearTopDepObj>(); } CFBamClearTopDepByUNameIdxKey key = schema.getBackingStore().getFactoryClearTopDep().newUNameIdxKey(); key.setRequiredTenantId(TenantId); key.setRequiredContTableId(ContTableId); key.setRequiredName(Name); ICFBamClearTopDepObj obj = null; if ((!forceRead) && indexByUNameIdx.containsKey(key)) { obj = indexByUNameIdx.get(key); } else { CFBamClearTopDepBuff buff = schema .getBackingStore() .getTableClearTopDep() .readDerivedByUNameIdx(schema.getAuthorization(), TenantId, ContTableId, Name); if (buff != null) { obj = (ICFBamClearTopDepObj) schema.getScopeTableObj().constructByClassCode(buff.getClassCode()); obj.setPKey(schema.getBackingStore().getFactoryScope().newPKey()); obj.setBuff(buff); obj = (ICFBamClearTopDepObj) obj.realize(); } else if (schema.getCacheMisses()) { indexByUNameIdx.put(key, null); } } return (obj); }
public void deleteClearTopDep(ICFBamClearTopDepObj Obj) { ICFBamClearTopDepObj obj = Obj; schema .getBackingStore() .getTableClearTopDep() .deleteClearTopDep(schema.getAuthorization(), obj.getClearTopDepBuff()); obj.forget(true); }
public ICFBamClearTopDepObj updateClearTopDep(ICFBamClearTopDepObj Obj) { ICFBamClearTopDepObj obj = Obj; schema .getBackingStore() .getTableClearTopDep() .updateClearTopDep(schema.getAuthorization(), Obj.getClearTopDepBuff()); if (Obj.getClassCode().equals("CLRT")) { obj = (ICFBamClearTopDepObj) Obj.realize(); } return (obj); }
public ICFBamClearTopDepObj createClearTopDep(ICFBamClearTopDepObj Obj) { ICFBamClearTopDepObj obj = Obj; CFBamClearTopDepBuff buff = obj.getClearTopDepBuff(); schema .getBackingStore() .getTableClearTopDep() .createClearTopDep(schema.getAuthorization(), buff); obj.copyBuffToPKey(); if (obj.getPKey().getClassCode().equals("CLRT")) { obj = (ICFBamClearTopDepObj) (obj.realize()); } return (obj); }
public void forgetClearTopDepByIdIdx(long TenantId, long Id) { if (members == null) { return; } CFBamScopePKey key = schema.getBackingStore().getFactoryScope().newPKey(); key.setRequiredTenantId(TenantId); key.setRequiredId(Id); if (members.containsKey(key)) { ICFBamClearTopDepObj probed = members.get(key); if (probed != null) { probed.forget(true); } } }
public ICFBamClearTopDepObj lockClearTopDep(CFBamScopePKey pkey) { ICFBamClearTopDepObj locked = null; CFBamClearTopDepBuff lockBuff = schema.getBackingStore().getTableClearTopDep().lockDerived(schema.getAuthorization(), pkey); if (lockBuff != null) { locked = (ICFBamClearTopDepObj) schema.getScopeTableObj().constructByClassCode(lockBuff.getClassCode()); locked.setPKey(schema.getBackingStore().getFactoryScope().newPKey()); locked.setBuff(lockBuff); locked = (ICFBamClearTopDepObj) locked.realize(); } else { throw CFLib.getDefaultExceptionFactory() .newCollisionDetectedException(getClass(), "lockClearTopDep", pkey); } return (locked); }
public void forgetClearTopDepByUNameIdx(long TenantId, long ContTableId, String Name) { if (indexByUNameIdx == null) { return; } CFBamClearTopDepByUNameIdxKey key = schema.getBackingStore().getFactoryClearTopDep().newUNameIdxKey(); key.setRequiredTenantId(TenantId); key.setRequiredContTableId(ContTableId); key.setRequiredName(Name); if (indexByUNameIdx.containsKey(key)) { ICFBamClearTopDepObj probed = indexByUNameIdx.get(key); if (probed != null) { probed.forget(true); } indexByUNameIdx.remove(key); } }
public void refreshMe() { Component cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { if (!((JInternalFrame) cont).isClosed()) { Collection<ICFBamClearSubDep1Obj> dataCollection; ICFBamClearTopDepObj focus = (ICFBamClearTopDepObj) getSwingFocusAsClearTopDep(); if (focus != null) { dataCollection = focus.getOptionalComponentsClearDep(swingIsInitializing); } else { dataCollection = null; } JPanel panel = getTabViewComponentsClearDepListJPanel(); ICFBamSwingClearSubDep1JPanelList jpList = (ICFBamSwingClearSubDep1JPanelList) panel; jpList.setSwingDataCollection(dataCollection); } } }
public JPanel getTabViewComponentsClearDepListJPanel() { if (tabViewComponentsClearDepListJPanel == null) { Collection<ICFBamClearSubDep1Obj> dataCollection; ICFBamClearTopDepObj focus = (ICFBamClearTopDepObj) getSwingFocusAsClearTopDep(); if (focus != null) { dataCollection = focus.getOptionalComponentsClearDep(swingIsInitializing); } else { dataCollection = null; } ICFBamClearTopDepObj swingContainer; if ((focus != null) && (focus instanceof ICFBamClearTopDepObj)) { swingContainer = (ICFBamClearTopDepObj) focus; } else { swingContainer = null; } tabViewComponentsClearDepListJPanel = swingSchema .getClearSubDep1Factory() .newListJPanel( null, swingContainer, dataCollection, new RefreshComponentsClearDepList(), false); } return (tabViewComponentsClearDepListJPanel); }
public void deleteClearTopDepByUNameIdx(long TenantId, long ContTableId, String Name) { if (indexByUNameIdx == null) { indexByUNameIdx = new HashMap<CFBamClearTopDepByUNameIdxKey, ICFBamClearTopDepObj>(); } CFBamClearTopDepByUNameIdxKey key = schema.getBackingStore().getFactoryClearTopDep().newUNameIdxKey(); key.setRequiredTenantId(TenantId); key.setRequiredContTableId(ContTableId); key.setRequiredName(Name); ICFBamClearTopDepObj obj = null; if (indexByUNameIdx.containsKey(key)) { obj = indexByUNameIdx.get(key); schema .getBackingStore() .getTableClearTopDep() .deleteClearTopDepByUNameIdx(schema.getAuthorization(), TenantId, ContTableId, Name); obj.forget(true); } else { schema .getBackingStore() .getTableClearTopDep() .deleteClearTopDepByUNameIdx(schema.getAuthorization(), TenantId, ContTableId, Name); } }
public ICFBamClearTopDepObj readClearTopDep(CFBamScopePKey pkey, boolean forceRead) { ICFBamClearTopDepObj obj = null; if ((!forceRead) && members.containsKey(pkey)) { obj = members.get(pkey); } else { CFBamClearTopDepBuff readBuff = schema .getBackingStore() .getTableClearTopDep() .readDerivedByIdIdx( schema.getAuthorization(), pkey.getRequiredTenantId(), pkey.getRequiredId()); if (readBuff != null) { obj = (ICFBamClearTopDepObj) schema.getScopeTableObj().constructByClassCode(readBuff.getClassCode()); obj.setPKey(schema.getBackingStore().getFactoryScope().newPKey()); obj.setBuff(readBuff); obj = (ICFBamClearTopDepObj) obj.realize(); } else if (schema.getCacheMisses()) { members.put(pkey, null); } } return (obj); }
public void forgetClearTopDep(ICFBamClearTopDepObj Obj, boolean forgetSubObjects) { ICFBamClearTopDepObj obj = Obj; CFBamScopePKey pkey = obj.getPKey(); if (members.containsKey(pkey)) { ICFBamClearTopDepObj keepObj = members.get(pkey); // Detach object from alternate, duplicate, all and PKey indexes if (indexByTenantIdx != null) { CFBamScopeByTenantIdxKey keyTenantIdx = schema.getBackingStore().getFactoryScope().newTenantIdxKey(); keyTenantIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapTenantIdx = indexByTenantIdx.get(keyTenantIdx); if (mapTenantIdx != null) { indexByTenantIdx.remove(keyTenantIdx); } } if (indexByTableIdx != null) { CFBamClearDepByTableIdxKey keyTableIdx = schema.getBackingStore().getFactoryClearDep().newTableIdxKey(); keyTableIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyTableIdx.setRequiredRelationId(keepObj.getRequiredRelationId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapTableIdx = indexByTableIdx.get(keyTableIdx); if (mapTableIdx != null) { indexByTableIdx.remove(keyTableIdx); } } if (indexByContTblIdx != null) { CFBamClearTopDepByContTblIdxKey keyContTblIdx = schema.getBackingStore().getFactoryClearTopDep().newContTblIdxKey(); keyContTblIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyContTblIdx.setRequiredContTableId(keepObj.getRequiredContTableId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapContTblIdx = indexByContTblIdx.get(keyContTblIdx); if (mapContTblIdx != null) { mapContTblIdx.remove(keepObj.getPKey()); } } if (indexByUNameIdx != null) { CFBamClearTopDepByUNameIdxKey keyUNameIdx = schema.getBackingStore().getFactoryClearTopDep().newUNameIdxKey(); keyUNameIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyUNameIdx.setRequiredContTableId(keepObj.getRequiredContTableId()); keyUNameIdx.setRequiredName(keepObj.getRequiredName()); indexByUNameIdx.remove(keyUNameIdx); } if (allClearTopDep != null) { allClearTopDep.remove(keepObj.getPKey()); } members.remove(pkey); if (forgetSubObjects) { schema .getClearSubDep1TableObj() .forgetClearSubDep1ByContClearTopIdx( keepObj.getRequiredTenantId(), keepObj.getRequiredId()); } } schema.getClearDepTableObj().forgetClearDep(obj); }
public ICFBamClearTopDepObj realizeClearTopDep(ICFBamClearTopDepObj Obj) { ICFBamClearTopDepObj obj = Obj; CFBamScopePKey pkey = obj.getPKey(); ICFBamClearTopDepObj keepObj = null; if (members.containsKey(pkey) && (null != members.get(pkey))) { ICFBamClearTopDepObj existingObj = members.get(pkey); keepObj = existingObj; /* * We always rebind the data because if we're being called, some index has * been updated and is refreshing it's data, which may or may not have changed */ // Detach object from alternate and duplicate indexes, leave PKey alone if (indexByTenantIdx != null) { CFBamScopeByTenantIdxKey keyTenantIdx = schema.getBackingStore().getFactoryScope().newTenantIdxKey(); keyTenantIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapTenantIdx = indexByTenantIdx.get(keyTenantIdx); if (mapTenantIdx != null) { indexByTenantIdx.remove(keyTenantIdx); } } if (indexByTableIdx != null) { CFBamClearDepByTableIdxKey keyTableIdx = schema.getBackingStore().getFactoryClearDep().newTableIdxKey(); keyTableIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyTableIdx.setRequiredRelationId(keepObj.getRequiredRelationId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapTableIdx = indexByTableIdx.get(keyTableIdx); if (mapTableIdx != null) { indexByTableIdx.remove(keyTableIdx); } } if (indexByContTblIdx != null) { CFBamClearTopDepByContTblIdxKey keyContTblIdx = schema.getBackingStore().getFactoryClearTopDep().newContTblIdxKey(); keyContTblIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyContTblIdx.setRequiredContTableId(keepObj.getRequiredContTableId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapContTblIdx = indexByContTblIdx.get(keyContTblIdx); if (mapContTblIdx != null) { mapContTblIdx.remove(keepObj.getPKey()); } } if (indexByUNameIdx != null) { CFBamClearTopDepByUNameIdxKey keyUNameIdx = schema.getBackingStore().getFactoryClearTopDep().newUNameIdxKey(); keyUNameIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyUNameIdx.setRequiredContTableId(keepObj.getRequiredContTableId()); keyUNameIdx.setRequiredName(keepObj.getRequiredName()); indexByUNameIdx.remove(keyUNameIdx); } // Keep passing the new object because it's the one with the buffer // that the base table needs to copy to the existing object from // the cache. keepObj = (ICFBamClearTopDepObj) schema.getClearDepTableObj().realizeClearDep(Obj); // Attach new object to alternate and duplicate indexes -- PKey stay stable if (indexByTenantIdx != null) { CFBamScopeByTenantIdxKey keyTenantIdx = schema.getBackingStore().getFactoryScope().newTenantIdxKey(); keyTenantIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapTenantIdx = indexByTenantIdx.get(keyTenantIdx); if (mapTenantIdx != null) { mapTenantIdx.put(keepObj.getPKey(), keepObj); } } if (indexByTableIdx != null) { CFBamClearDepByTableIdxKey keyTableIdx = schema.getBackingStore().getFactoryClearDep().newTableIdxKey(); keyTableIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyTableIdx.setRequiredRelationId(keepObj.getRequiredRelationId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapTableIdx = indexByTableIdx.get(keyTableIdx); if (mapTableIdx != null) { mapTableIdx.put(keepObj.getPKey(), keepObj); } } if (indexByContTblIdx != null) { CFBamClearTopDepByContTblIdxKey keyContTblIdx = schema.getBackingStore().getFactoryClearTopDep().newContTblIdxKey(); keyContTblIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyContTblIdx.setRequiredContTableId(keepObj.getRequiredContTableId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapContTblIdx = indexByContTblIdx.get(keyContTblIdx); if (mapContTblIdx != null) { mapContTblIdx.put(keepObj.getPKey(), keepObj); } } if (indexByUNameIdx != null) { CFBamClearTopDepByUNameIdxKey keyUNameIdx = schema.getBackingStore().getFactoryClearTopDep().newUNameIdxKey(); keyUNameIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyUNameIdx.setRequiredContTableId(keepObj.getRequiredContTableId()); keyUNameIdx.setRequiredName(keepObj.getRequiredName()); indexByUNameIdx.put(keyUNameIdx, keepObj); } if (allClearTopDep != null) { allClearTopDep.put(keepObj.getPKey(), keepObj); } } else { keepObj = obj; keepObj = (ICFBamClearTopDepObj) schema.getClearDepTableObj().realizeClearDep(keepObj); // Attach new object to PKey, all, alternate, and duplicate indexes members.put(keepObj.getPKey(), keepObj); if (allClearTopDep != null) { allClearTopDep.put(keepObj.getPKey(), keepObj); } if (indexByTenantIdx != null) { CFBamScopeByTenantIdxKey keyTenantIdx = schema.getBackingStore().getFactoryScope().newTenantIdxKey(); keyTenantIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapTenantIdx = indexByTenantIdx.get(keyTenantIdx); if (mapTenantIdx != null) { mapTenantIdx.put(keepObj.getPKey(), keepObj); } } if (indexByTableIdx != null) { CFBamClearDepByTableIdxKey keyTableIdx = schema.getBackingStore().getFactoryClearDep().newTableIdxKey(); keyTableIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyTableIdx.setRequiredRelationId(keepObj.getRequiredRelationId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapTableIdx = indexByTableIdx.get(keyTableIdx); if (mapTableIdx != null) { mapTableIdx.put(keepObj.getPKey(), keepObj); } } if (indexByContTblIdx != null) { CFBamClearTopDepByContTblIdxKey keyContTblIdx = schema.getBackingStore().getFactoryClearTopDep().newContTblIdxKey(); keyContTblIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyContTblIdx.setRequiredContTableId(keepObj.getRequiredContTableId()); Map<CFBamScopePKey, ICFBamClearTopDepObj> mapContTblIdx = indexByContTblIdx.get(keyContTblIdx); if (mapContTblIdx != null) { mapContTblIdx.put(keepObj.getPKey(), keepObj); } } if (indexByUNameIdx != null) { CFBamClearTopDepByUNameIdxKey keyUNameIdx = schema.getBackingStore().getFactoryClearTopDep().newUNameIdxKey(); keyUNameIdx.setRequiredTenantId(keepObj.getRequiredTenantId()); keyUNameIdx.setRequiredContTableId(keepObj.getRequiredContTableId()); keyUNameIdx.setRequiredName(keepObj.getRequiredName()); indexByUNameIdx.put(keyUNameIdx, keepObj); } } return (keepObj); }
public List<ICFBamClearTopDepObj> readAllClearTopDep(boolean forceRead) { final String S_ProcName = "readAllClearTopDep"; if ((allClearTopDep == null) || forceRead) { Map<CFBamScopePKey, ICFBamClearTopDepObj> map = new HashMap<CFBamScopePKey, ICFBamClearTopDepObj>(); allClearTopDep = map; CFBamClearTopDepBuff[] buffList = schema.getBackingStore().getTableClearTopDep().readAllDerived(schema.getAuthorization()); CFBamClearTopDepBuff buff; ICFBamClearTopDepObj obj; for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; obj = (ICFBamClearTopDepObj) schema.getScopeTableObj().constructByClassCode(buff.getClassCode()); obj.setPKey(schema.getBackingStore().getFactoryScope().newPKey()); obj.setBuff(buff); ICFBamClearTopDepObj realized = (ICFBamClearTopDepObj) obj.realize(); } } Comparator<ICFBamClearTopDepObj> cmp = new Comparator<ICFBamClearTopDepObj>() { public int compare(ICFBamClearTopDepObj lhs, ICFBamClearTopDepObj rhs) { if (lhs == null) { if (rhs == null) { return (0); } else { return (-1); } } else if (rhs == null) { return (1); } else { CFBamScopePKey lhsPKey = lhs.getPKey(); CFBamScopePKey rhsPKey = rhs.getPKey(); int ret = lhsPKey.compareTo(rhsPKey); return (ret); } } }; int len = allClearTopDep.size(); ICFBamClearTopDepObj arr[] = new ICFBamClearTopDepObj[len]; Iterator<ICFBamClearTopDepObj> valIter = allClearTopDep.values().iterator(); int idx = 0; while ((idx < len) && valIter.hasNext()) { arr[idx++] = valIter.next(); } if (idx < len) { throw CFLib.getDefaultExceptionFactory() .newArgumentUnderflowException(getClass(), S_ProcName, 0, "idx", idx, len); } else if (valIter.hasNext()) { throw CFLib.getDefaultExceptionFactory() .newArgumentOverflowException(getClass(), S_ProcName, 0, "idx", idx, len); } Arrays.sort(arr, cmp); ArrayList<ICFBamClearTopDepObj> arrayList = new ArrayList<ICFBamClearTopDepObj>(len); for (idx = 0; idx < len; idx++) { arrayList.add(arr[idx]); } List<ICFBamClearTopDepObj> sortedList = arrayList; return (sortedList); }
public List<ICFBamClearTopDepObj> readClearTopDepByContTblIdx( long TenantId, long ContTableId, boolean forceRead) { final String S_ProcName = "readClearTopDepByContTblIdx"; CFBamClearTopDepByContTblIdxKey key = schema.getBackingStore().getFactoryClearTopDep().newContTblIdxKey(); key.setRequiredTenantId(TenantId); key.setRequiredContTableId(ContTableId); Map<CFBamScopePKey, ICFBamClearTopDepObj> dict; if (indexByContTblIdx == null) { indexByContTblIdx = new HashMap<CFBamClearTopDepByContTblIdxKey, Map<CFBamScopePKey, ICFBamClearTopDepObj>>(); } if ((!forceRead) && indexByContTblIdx.containsKey(key)) { dict = indexByContTblIdx.get(key); } else { dict = new HashMap<CFBamScopePKey, ICFBamClearTopDepObj>(); // Allow other threads to dirty-read while we're loading indexByContTblIdx.put(key, dict); ICFBamClearTopDepObj obj; CFBamClearTopDepBuff[] buffList = schema .getBackingStore() .getTableClearTopDep() .readDerivedByContTblIdx(schema.getAuthorization(), TenantId, ContTableId); CFBamClearTopDepBuff buff; for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; obj = (ICFBamClearTopDepObj) schema.getScopeTableObj().constructByClassCode(buff.getClassCode()); obj.setPKey(schema.getBackingStore().getFactoryScope().newPKey()); obj.setBuff(buff); ICFBamClearTopDepObj realized = (ICFBamClearTopDepObj) obj.realize(); } } Comparator<ICFBamClearTopDepObj> cmp = new Comparator<ICFBamClearTopDepObj>() { public int compare(ICFBamClearTopDepObj lhs, ICFBamClearTopDepObj rhs) { if (lhs == null) { if (rhs == null) { return (0); } else { return (-1); } } else if (rhs == null) { return (1); } else { CFBamScopePKey lhsPKey = lhs.getPKey(); CFBamScopePKey rhsPKey = rhs.getPKey(); int ret = lhsPKey.compareTo(rhsPKey); return (ret); } } }; int len = dict.size(); ICFBamClearTopDepObj arr[] = new ICFBamClearTopDepObj[len]; Iterator<ICFBamClearTopDepObj> valIter = dict.values().iterator(); int idx = 0; while ((idx < len) && valIter.hasNext()) { arr[idx++] = valIter.next(); } if (idx < len) { throw CFLib.getDefaultExceptionFactory() .newArgumentUnderflowException(getClass(), S_ProcName, 0, "idx", idx, len); } else if (valIter.hasNext()) { throw CFLib.getDefaultExceptionFactory() .newArgumentOverflowException(getClass(), S_ProcName, 0, "idx", idx, len); } Arrays.sort(arr, cmp); ArrayList<ICFBamClearTopDepObj> arrayList = new ArrayList<ICFBamClearTopDepObj>(len); for (idx = 0; idx < len; idx++) { arrayList.add(arr[idx]); } List<ICFBamClearTopDepObj> sortedList = arrayList; return (sortedList); }