From d8ef6f1a70475c457957d2d4ab2289ec825d653d Mon Sep 17 00:00:00 2001 From: Date: Mon, 10 Sep 2012 01:00:33 +0000 Subject: [PATCH] Make a few more methods externally visible in the command line ui --- src/com/webcodepro/applecommander/ui/ac.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/webcodepro/applecommander/ui/ac.java b/src/com/webcodepro/applecommander/ui/ac.java index 115c453..64f191a 100644 --- a/src/com/webcodepro/applecommander/ui/ac.java +++ b/src/com/webcodepro/applecommander/ui/ac.java @@ -499,7 +499,7 @@ public class ac { /** * Create a DOS disk image. */ - static void createDosDisk(String fileName, int imageSize) + public static void createDosDisk(String fileName, int imageSize) throws IOException { ByteArrayImageLayout layout = new ByteArrayImageLayout(imageSize); ImageOrder imageOrder = new DosOrder(layout); @@ -510,7 +510,7 @@ public class ac { /** * Create a Pascal disk image. */ - static void createPasDisk(String fileName, String volName, int imageSize) + public static void createPasDisk(String fileName, String volName, int imageSize) throws IOException { ByteArrayImageLayout layout = new ByteArrayImageLayout(imageSize); ImageOrder imageOrder = new ProdosOrder(layout); @@ -521,7 +521,7 @@ public class ac { /** * Create a ProDOS disk image. */ - static void createProDisk(String fileName, String volName, int imageSize) + public static void createProDisk(String fileName, String volName, int imageSize) throws IOException { ByteArrayImageLayout layout = new ByteArrayImageLayout(imageSize); ImageOrder imageOrder = new ProdosOrder(layout);