How do you get an object from one place to another?
For example, I have a ContactView with a contact table and the corresponding ContactActivity / Place classes. If I want to edit a contact, I click on the row of the table and go to ContactEditorPlace. How does ContactEditorView get a contact for editing?
The examples that I saw seem to indicate that they do not pass references to the actual objects in place, but instead they are faced with the problem of passing a string or identifier (for example, a cost pattern). Is there a reason for this other than simple tokenization? Is there a reason the link should not be in place?
If an object reference is not specified in the ContactEditorPlace constructor, then how does it get into ContactEditorActivity? This can be done using EventBus, but this would be a large number of templates for passing one link to one action.
I would notice that I am not using RequestFactory.
Glenn
source share