X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FAppletFormatAdapter.java;h=5eb4d2bd6d427abb5103b620cb98af5800d97aff;hb=622abac057abff5bf418de3490f7ad78b409e1fe;hp=42e881c56248524a536f473d70a9a61e64a47da4;hpb=1eb7d27d73beabe1a1b74fd088c1c3254a8066be;p=jalview.git diff --git a/src/jalview/io/AppletFormatAdapter.java b/src/jalview/io/AppletFormatAdapter.java index 42e881c..5eb4d2b 100755 --- a/src/jalview/io/AppletFormatAdapter.java +++ b/src/jalview/io/AppletFormatAdapter.java @@ -1,5 +1,5 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.5) + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle * * This file is part of Jalview. @@ -463,6 +463,17 @@ public class AppletFormatAdapter return null; } + public static String checkProtocol(String file) + { + String protocol = FILE; + + if (file.indexOf("http:") > -1 || file.indexOf("file:") > -1) + { + protocol = URL; + } + return protocol; + } + public static void main(String[] args) { int i = 0; @@ -597,11 +608,14 @@ public class AppletFormatAdapter if (!fp.isValid()) { fp = null; - } else { - if (debug) + } + else { - System.out.println("Successful."); - }} + if (debug) + { + System.out.println("Successful."); + } + } } catch (Exception e) { if (debug) @@ -690,4 +704,4 @@ public class AppletFormatAdapter } return null; } -} \ No newline at end of file +}