Changes between Version 35 and Version 36 of PRO_LIB_CORE_TUTORIAL_NEW


Ignore:
Timestamp:
07/02/09 20:19:20 (16 years ago)
Author:
gogov
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PRO_LIB_CORE_TUTORIAL_NEW

    v35 v36  
    571571So, in this example you want to get the List of all invited people to your party, invite only people whose name is "Meddle" and update this list when a potential candidate to come to the party is added. This is kinda slow though, because each time a new Person is added to People, I don't want to reconstruct the whole invitedPeople list. 
    572572 
     573ProLists are smart though so they act not only as lists but as maps. In the ProLib there is the concept of ''keys'' when using ProList, depending on what kind of items are inside: 
     574 * Immutables -- the ''key'' of an Immutable is the Immutable itself, 
     575 * ListEntries -- there is a ListEntry class which is basically a pair of a key and a value. The ''key'' of a ListEntry is its key (: 
     576 * others -- ''key'' is always null. 
     577 
     578You can get the ''key'' of a given object by using the ProUitl.getKey() method. 
     579 
     580ProLists check if they're working with ListEntry descendants, so you can subclass ListEntry to improve the above example like this: 
     581 
     582{{{ 
     583... 
     584class Party implements ProObject { 
     585    static class PersonEntry extends ListEntry { 
     586        PersonEntry(String name, ... ) { ... } 
     587 
     588        Object getKey() { return name; } 
     589        Object getValue() { ... } 
     590    } 
     591 
     592    public ListProp<PersonEntry> people() { ... } 
     593 
     594    public ListProp<PersonEntry> invitedPeople() { 
     595        class invitedPeople extends AutoListProperty<PersonEntry> { 
     596            @Override 
     597            protected ProList<PersonEntry> constructList() { 
     598                return new ComposingProList<PersonEntry>() { 
     599                    @Override 
     600                    protected ProList<PersonEntry> computeData() { 
     601                        return people().findAll("Meddle"); 
     602                    } 
     603                } 
     604            } 
     605        } 
     606 
     607        return getBean().makeProp(invitedPeople.class); 
     608    } 
     609... 
     610}}} 
     611 
     612Here the '''E findAll(Object key)''' method of ProList<E> is used which basically returns all elements in the list which have the specified key. 
     613 
     614The difference here is that ProLib is smart enough to recompute invitedPeople() only when another PersonEntry with key "Meddle" is entered, such is removed or modified. Otherwise it doesn't make sense to recompute because the list hasn't changed if for instance you've added a PersonEntry with key "Christ". 
     615 
     616'''E findOne(Object key)''' is the same but it expects to find at most one element with the specified key and returns it. If there are more than one, an Exception is thrown. 
     617 
    573618=== Bad Code Examples === 
    574  * init final property with constant which isn't an argument of the constructor 
    575  * finalproperty.init(new stuff()) 
    576  
    577619 * Resource Property is a better choice. 
    578620{{{ 
     
    597639 
    598640== Debugging ProLib == 
    599  * Inspector - A GUI tool that allows browsing the application state while it's still working. 
     641Some advice: 
     642 * Print. Debugging with a debugger is uglier that usual. 
     643 * Run the tests before commit. Don't break tests. 
     644 * Use the Inspector - this is a GUI tool that allows browsing the Properties in the application while it's running. 
    600645 
    601646== Good Practices  == 
     
    604649 * Keep the ProLib and with high quality, because everything else will depend on it. 
    605650 * Be careful not to create cyclic dependencies (like a = b + 1, b = a + 1). No library can solve them. 
     651 
     652== TODO == 
     653 * init final property with constant which isn't an argument of the constructor 
     654 * finalproperty.init(new stuff())