Can you explain me what is the case known as "robot legs problem" ?

I read FAQ and example here :
http://docs.google.com/View?docid=dhfm3hw2_51d2tmv6pc

Basically, I don't see why not to write simply this :

public class LegModule extends AbstractModule {

   void configure () {
       bind(Foot.class).annotatedWith(Left.class).toInstance(new Foot(
"leftie"));
       bind(Foot.class).annotatedWith(Right.class).toInstance(new Foot(
"righty"));
   }
}

Note : gmail coding...

Thanks !
Anthony

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"google-guice" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-guice?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to