Comment by [email protected]:

{{{
@Category(PersonCategory.class)
interface MyFactory {
// Would be illegal without a category providing an implementation of doSomething()
  AutoBean<Person> person();
}
}}}

Shouldn't this read

{{{
@Category(PersonCategory.class)
interface MyFactory extends AutoBeanFactory{
// Would be illegal without a category providing an implementation of marry(AutoBean<Person> person, Person spouse)
  AutoBean<Person> person();
}
}}}

For more information:
http://code.google.com/p/google-web-toolkit/wiki/AutoBean

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to