59aeb61fe3
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
19 lines
392 B
Plaintext
19 lines
392 B
Plaintext
//
|
|
// $Id: TestObject.dobj,v 1.8 2002/03/19 01:10:03 mdb Exp $
|
|
|
|
package com.threerings.presents.server;
|
|
|
|
import com.threerings.presents.dobj.*;
|
|
|
|
/**
|
|
* A test distributed object.
|
|
*/
|
|
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();
|
|
}
|