From baf655620eca2ff1496e2c42c972c43d359f4086 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 29 Nov 2001 19:31:12 +0000 Subject: [PATCH] Made setPrefix() and ditched constructor. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@678 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/miso/tools/xml/MisoSceneRuleSet.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/java/com/threerings/miso/tools/xml/MisoSceneRuleSet.java b/src/java/com/threerings/miso/tools/xml/MisoSceneRuleSet.java index 8ce778b25..d3309ebd4 100644 --- a/src/java/com/threerings/miso/tools/xml/MisoSceneRuleSet.java +++ b/src/java/com/threerings/miso/tools/xml/MisoSceneRuleSet.java @@ -1,7 +1,7 @@ // -// $Id: MisoSceneRuleSet.java,v 1.3 2001/11/20 04:15:44 mdb Exp $ +// $Id: MisoSceneRuleSet.java,v 1.4 2001/11/29 19:31:12 mdb Exp $ -package com.threerings.media.tools.tile.xml; +package com.threerings.miso.tools.scene.xml; import org.apache.commons.digester.Digester; import org.apache.commons.digester.RuleSetBase; @@ -16,9 +16,9 @@ import com.threerings.miso.scene.MisoSceneModel; public class MisoSceneRuleSet extends RuleSetBase { /** - * Constructs a miso scene rule set which will match scenes with the - * supplied prefix. For example, passing scene.miso will - * match the scene in the following XML file: + * Configures the rule set to match scenes with the supplied prefix. + * For example, passing scene.miso will match the scene + * in the following XML file: * *
      * <scene>
@@ -30,7 +30,7 @@ public class MisoSceneRuleSet extends RuleSetBase
      * </scene>
      * 
*/ - public MisoSceneRuleSet (String prefix) + public void setPrefix (String prefix) { _prefix = prefix; }