Changes between Version 3 and Version 4 of PRO_LIB_MODEL_PRO_LISTS_R0


Ignore:
Timestamp:
04/21/09 16:35:35 (16 years ago)
Author:
nenko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PRO_LIB_MODEL_PRO_LISTS_R0

    v3 v4  
    3535In the add/remove method of ProList will be added new functionality that will add the parameter to the map with the following rules: 
    3636 * If the parameter is ListEntry - the key in the map is the key of ListEntry  
    37  * if the parameter is Immutable - the key in the map is the Immutable object (its hashCode) 
     37 * if the parameter is Immutable - the key in the map is the Immutable object 
    3838 * if the parameter is Mutable - the added in the map is null 
    3939 
    4040The two new methods are :  
    41  * findAll (key : Object) : List<ListEntry> - this method will return all the entries in the list with the specified key 
    42  * findOne (key : Object) : ListEntry - this method will return only one entry from the list for the key. More - if there are more than one entry an exception will be thrown 
     41 * findAll (key : Object) : List<E> - this method will return all the entries in the list with the specified key 
     42 * findOne (key : Object) : E - this method will return only one entry from the list for the key. More - if there are more than one entry an exception will be thrown 
    4343 
    4444 
    4545 
    4646= Implementation = 
    47 ^(Describe and link the implementation results here (from the wiki or the repository).)^ 
     47The task is implemented according to the design 
     48 
     49Changesets: [2163] 
    4850 
    4951= Testing =