OSDN Git Service

Correct my own JavaDoc comment
authorblaine.dev <blaine.dev@75d07b2b-3a1a-0410-a2c5-0572b91ccdca>
Tue, 4 Aug 2009 14:49:43 +0000 (14:49 +0000)
committerblaine.dev <blaine.dev@75d07b2b-3a1a-0410-a2c5-0572b91ccdca>
Tue, 4 Aug 2009 14:49:43 +0000 (14:49 +0000)
git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@4565 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

src/com/jme/util/export/Savable.java

index 4564383..11ec27c 100644 (file)
@@ -39,9 +39,10 @@ public interface Savable {
     void read(JMEImporter im) throws IOException;
 
     /**
-     * This method should be named getClassName(), since "tag" is XML-specific,
-     * but the type returned here is important for every persistence
-     * impementation.
+     * The peristed type for the object.
+     *
+     * Note that tag here does not mean XML tag, but the class that the object
+     * is <i>tagged</i> with.
      */
     Class getClassTag();
 }