You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by "Soti, Dheeraj" <ds...@harris.com> on 2005/03/29 01:53:37 UTC

Is it possible to have references to the same classes if I use do cument/literal wrapped

I have following kind of structure where this structure can be very deep. Can
this cause some issues? 

public class Person {
	String name;
      Person friend1, friend2;
      
}

Thanks

Dheeraj Soti