mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-11-18 18:08:17 +00:00
16 lines
299 B
Java
16 lines
299 B
Java
package com.bytezone.diskbrowser.applefile;
|
|
|
|
public class SegmentDictionary
|
|
{
|
|
private final boolean isValid;
|
|
|
|
public SegmentDictionary (String name, byte[] buffer)
|
|
{
|
|
isValid = !name.equals ("SYSTEM.INTERP"); // temporary
|
|
}
|
|
|
|
public boolean isValid ()
|
|
{
|
|
return isValid;
|
|
}
|
|
} |