| 573 | ProLists 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 | |
| 578 | You can get the ''key'' of a given object by using the ProUitl.getKey() method. |
| 579 | |
| 580 | ProLists check if they're working with ListEntry descendants, so you can subclass ListEntry to improve the above example like this: |
| 581 | |
| 582 | {{{ |
| 583 | ... |
| 584 | class 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 | |
| 612 | Here 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 | |
| 614 | The 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 | |