Added ability to update individual elements of an array field. The objects

have helper functions named set<field>At() for such a purpose.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1134 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-03-19 01:10:03 +00:00
parent 7ccb9594b9
commit 59aeb61fe3
7 changed files with 378 additions and 25 deletions
@@ -1,5 +1,5 @@
//
// $Id: TestObject.dobj,v 1.7 2002/02/08 23:17:38 mdb Exp $
// $Id: TestObject.dobj,v 1.8 2002/03/19 01:10:03 mdb Exp $
package com.threerings.presents.server;
@@ -12,5 +12,7 @@ public class TestObject extends DObject
{
public int foo;
public String bar;
public int[] ints = new int[5];
public String[] strings = new String[5];
public OidList list = new OidList();
}