Hiall,

I have defined a Restaurant class like this:

public class Restaurant {
        public String name = "";
        public String address = "";
}

As you can see fields are public, but as far as I tried I can't access those fields from a velocity context. If I put the rest in a context like:

Restaurant r = new Restaurant();
r.name = "test";
r.address = "bla bla ";
context.put("rest", r);

there is no way to get the value of address by means of

$rest.address

I thought it was possible. Is it? Otherwise I should convert my class into an hashtable. That works, already tried.

Thanks,

-c.

--
+---------------------------------------+
             Cesare Rocchi
 ITC-IRST Povo I-38050 (TRENTO) ITALY
 http://tcc.itc.it/people/rocchi.html


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



Reply via email to