|
Hi,
If I have an xsd file with one complex type which contains a collection of another type, when I generate code, I get a bunch of access methods, like
public void addMarbles() public Enumeration enumerateMarbles() public int getMarblesCount()
etc. etc. Is there some setting I can use that will generate code that just returns the private member variable, i.e.
public Vector getMarbles() { return this._marbles; }
Thanks, Nick
|
