readFromSortedMap() public abstract method

public abstract readFromSortedMap ( String>.SortedDictionary sortedAreaCodeMap ) : void
sortedAreaCodeMap String>.SortedDictionary
return void
Esempio n. 1
0
 /**
  * Gets the size of the provided area code map storage. The map storage passed-in will be filled
  * as a result.
  */
 private static int getSizeOfAreaCodeMapStorage(AreaCodeMapStorageStrategy mapStorage,
     SortedDictionary<int, String> areaCodeMap)
 {
     mapStorage.readFromSortedMap(areaCodeMap);
     return mapStorage.getStorageSize();
 }
Esempio n. 2
0
 /**
  * Gets the size of the provided area code map storage. The map storage passed-in will be filled
  * as a result.
  */
 private static int getSizeOfAreaCodeMapStorage(AreaCodeMapStorageStrategy mapStorage,
                                                SortedDictionary <int, String> areaCodeMap)
 {
     mapStorage.readFromSortedMap(areaCodeMap);
     return(mapStorage.getStorageSize());
 }