Hello!

One quick question: Is it possible to retrieve the I18n messages from
another page? I tried this:

---

class SomePage {
        private Messages messages;

        public String getTitle() {
                return messages.get("title");
        }
}

class AnotherPage {
        @InjectPage
        private SomePage somePage;

        public void printTitle() {
                System.out.println(somePage.getTitle);
        }
}


---

But I always get the title of anotherPage.

TIA
 Stephan

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to