/* * AppleCommander - An Apple ][ image utility. * Copyright (C) 2002 by Robert Greene * robgreene at users.sourceforge.net * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package com.webcodepro.applecommander.storage; import java.text.NumberFormat; import java.util.ArrayList; import java.util.List; /** * Represents a DOS file entry on disk. *

* Date created: Oct 4, 2002 5:15:25 PM * @author: Rob Greene */ public class DosFileEntry implements FileEntry { private byte[] fileEntry; private DosFormatDisk disk; /** * Constructor for DosFileEntry. */ public DosFileEntry(byte[] fileEntry, DosFormatDisk disk) { super(); this.fileEntry = fileEntry; this.disk = disk; } /** * Return the name of this file. * @see com.webcodepro.applecommander.storage.FileEntry#getFilename() */ public String getFilename() { byte[] filename = new byte[30]; System.arraycopy(fileEntry, 3, filename, 0, filename.length); for (int i=0; i= 8185 && size <= 8192) { filter.setMode(GraphicsFileFilter.MODE_HGR_COLOR); return filter; } else if (size >= 16377 && size <= 16384) { filter.setMode(GraphicsFileFilter.MODE_DHR_COLOR); return filter; } // fall through to BinaryFileFilter... } return new BinaryFileFilter(); } /** * Determine if this is a text file. */ public boolean isTextFile() { return "T".equals(getFiletype()); } /** * Determine if this is an Applesoft BASIC file. */ public boolean isApplesoftBasicFile() { return "A".equals(getFiletype()); } /** * Determine if this is an Integer BASIC file. */ public boolean isIntegerBasicFile() { return "I".equals(getFiletype()); } /** * Determine if this is a binary file. */ public boolean isBinaryFile() { return "B".equals(getFiletype()); } }