Moved CompiledConfig stuff into narya because it's generally useful.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1173 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-04-02 01:55:26 +00:00
parent 6acdb6daae
commit 8a36a11a1d
3 changed files with 10 additions and 10 deletions
@@ -1,7 +1,7 @@
// //
// $Id: CompiledConfigTask.java,v 1.1 2002/03/08 06:15:21 mdb Exp $ // $Id: CompiledConfigTask.java,v 1.2 2002/04/02 01:55:26 mdb Exp $
package com.threerings.yohoho.tools; package com.threerings.tools;
import java.io.File; import java.io.File;
import java.io.Serializable; import java.io.Serializable;
@@ -9,8 +9,8 @@ import java.io.Serializable;
import org.apache.tools.ant.BuildException; import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Task; import org.apache.tools.ant.Task;
import com.threerings.yohoho.tools.xml.CompiledConfigParser; import com.threerings.tools.xml.CompiledConfigParser;
import com.threerings.yohoho.util.CompiledConfig; import com.threerings.util.CompiledConfig;
/** /**
* Used to parse configuration information from an XML file and create the * Used to parse configuration information from an XML file and create the
@@ -1,7 +1,7 @@
// //
// $Id: CompiledConfigParser.java,v 1.2 2002/03/08 09:40:21 mdb Exp $ // $Id: CompiledConfigParser.java,v 1.3 2002/04/02 01:55:26 mdb Exp $
package com.threerings.yohoho.tools.xml; package com.threerings.tools.xml;
import java.io.File; import java.io.File;
import java.io.FileInputStream; import java.io.FileInputStream;
@@ -11,8 +11,8 @@ import java.io.Serializable;
import org.xml.sax.SAXException; import org.xml.sax.SAXException;
import org.apache.commons.digester.Digester; import org.apache.commons.digester.Digester;
import com.threerings.yohoho.util.CompiledConfig; import com.threerings.util.CompiledConfig;
import com.threerings.yohoho.tools.CompiledConfigTask; import com.threerings.tools.CompiledConfigTask;
/** /**
* An abstract base implementation of a parser that is used to compile * An abstract base implementation of a parser that is used to compile
@@ -1,7 +1,7 @@
// //
// $Id: CompiledConfig.java,v 1.2 2002/03/08 08:30:05 mdb Exp $ // $Id: CompiledConfig.java,v 1.3 2002/04/02 01:55:26 mdb Exp $
package com.threerings.yohoho.util; package com.threerings.util;
import java.io.File; import java.io.File;
import java.io.FileOutputStream; import java.io.FileOutputStream;