On 6/2/08, raulmt <[EMAIL PROTECTED]> wrote:

>  No, I need to do this in a service... but even in a page, i have the page
>  class in a String at runtime, so I can't declare a property and use the
>  InjectPage like that....

Why don't you try to pass a page instance as a parameter to your
method service? Something like:

@InjectPage
private SomePage page;

void example() {
    yourservice.yourMethod(page, otherParameters);
}

-- 
Thiago

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to