Brought code in line with changes to Samskivert. I have not started to

genericize Narya data structures, nor make the existing code type safe. That's
going to be an extremely large project.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4007 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-04-10 08:59:30 +00:00
parent 02b59f33c9
commit 5a2583470c
24 changed files with 49 additions and 48 deletions
@@ -1,5 +1,5 @@
//
// $Id: DSetEditor.java,v 1.10 2004/11/06 01:59:24 ray Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -36,8 +36,8 @@ import com.samskivert.swing.ObjectEditorTable;
import com.samskivert.swing.event.CommandEvent;
import com.samskivert.util.ClassUtil;
import com.samskivert.util.ComparableArrayList;
import com.samskivert.util.ListUtil;
import com.samskivert.util.SortableArrayList;
import com.threerings.media.SafeScrollPane;
@@ -205,7 +205,7 @@ public class DSetEditor extends JPanel
protected void refreshData ()
{
_keys = new SortableArrayList();
_keys = new ComparableArrayList();
DSet.Entry[] entries = new DSet.Entry[_set.size()];
_set.toArray(entries);
for (int ii=0; ii < entries.length; ii++) {
@@ -224,7 +224,7 @@ public class DSetEditor extends JPanel
protected DSet _set;
/** An array we use to track our entries' positions by key. */
protected SortableArrayList _keys;
protected ComparableArrayList _keys;
/** The table used to edit. */
protected ObjectEditorTable _table;
@@ -101,10 +101,10 @@ public class ConfigRepository extends JORARepository
// documentation inherited
protected void createTables (Session session)
{
_ctable = new Table(
ConfigDatum.class.getName(), "CONFIG", session,
_ctable = new Table<ConfigDatum>(
ConfigDatum.class, "CONFIG", session,
new String[] { "OBJECT", "FIELD" }, true);
}
protected Table _ctable;
protected Table<ConfigDatum> _ctable;
}