dmolony-DiskBrowser/src/com/bytezone/diskbrowser/wizardry/DragonData.java

24 lines
826 B
Java
Raw Permalink Normal View History

2016-08-22 03:41:43 +00:00
package com.bytezone.diskbrowser.wizardry;
import com.bytezone.diskbrowser.applefile.AbstractFile;
2020-02-11 07:29:55 +00:00
// -----------------------------------------------------------------------------------//
class DragonData extends AbstractFile
// -----------------------------------------------------------------------------------//
2016-08-22 03:41:43 +00:00
{
2020-02-11 07:29:55 +00:00
// ---------------------------------------------------------------------------------//
DragonData (String name, byte[] buffer)
// ---------------------------------------------------------------------------------//
2016-08-22 03:41:43 +00:00
{
super (name, buffer);
}
2020-02-11 07:29:55 +00:00
// ---------------------------------------------------------------------------------//
2016-08-22 03:41:43 +00:00
@Override
public String getText ()
2020-02-11 07:29:55 +00:00
// ---------------------------------------------------------------------------------//
2016-08-22 03:41:43 +00:00
{
return "DragonData";
}
}