JAL-3269 ready for testing embedded interface
[jalview.git] / src / jalview / bin / JalviewLite.java
index dbc707d..75b0add 100644 (file)
@@ -21,6 +21,9 @@
 package jalview.bin;
 
 import jalview.analysis.AlignmentUtils;
+import jalview.api.AlignFrameI;
+import jalview.api.AlignViewportI;
+import jalview.api.JalviewApp;
 import jalview.api.StructureSelectionManagerProvider;
 import jalview.appletgui.AlignFrame;
 import jalview.appletgui.AlignViewport;
@@ -33,7 +36,6 @@ import jalview.datamodel.AlignmentOrder;
 import jalview.datamodel.ColumnSelection;
 import jalview.datamodel.HiddenColumns;
 import jalview.datamodel.PDBEntry;
-import jalview.datamodel.Sequence;
 import jalview.datamodel.SequenceGroup;
 import jalview.datamodel.SequenceI;
 import jalview.io.AnnotationFile;
@@ -43,18 +45,19 @@ import jalview.io.FileFormatI;
 import jalview.io.FileFormats;
 import jalview.io.FileParse;
 import jalview.io.IdentifyFile;
-import jalview.io.JPredFile;
-import jalview.io.JnetAnnotationMaker;
 import jalview.io.NewickFile;
 import jalview.javascript.JSFunctionExec;
 import jalview.javascript.JalviewLiteJsApi;
 import jalview.javascript.JsCallBack;
 import jalview.javascript.MouseOverStructureListener;
+import jalview.renderer.seqfeatures.FeatureRenderer;
 import jalview.structure.SelectionListener;
+import jalview.structure.SelectionSource;
 import jalview.structure.StructureSelectionManager;
+import jalview.structure.VamsasSource;
 import jalview.util.ColorUtils;
-import jalview.util.HttpUtils;
 import jalview.util.MessageManager;
+import jalview.viewmodel.AlignmentViewport;
 
 import java.applet.Applet;
 import java.awt.Button;
@@ -74,7 +77,6 @@ import java.net.URL;
 import java.util.ArrayList;
 import java.util.Hashtable;
 import java.util.List;
-import java.util.StringTokenizer;
 import java.util.Vector;
 
 import netscape.javascript.JSObject;
@@ -85,10 +87,16 @@ import netscape.javascript.JSObject;
  * @author $author$
  * @version $Revision: 1.92 $
  */
-public class JalviewLite extends Applet implements
-        StructureSelectionManagerProvider, JalviewLiteJsApi
+@SuppressWarnings("serial")
+public class JalviewLite extends Applet
+        implements StructureSelectionManagerProvider, JalviewLiteJsApi,
+        JalviewApp
 {
 
+  public JalviewLite()
+  {
+    appLoader = new JalviewAppLoader(debug);
+  }
   private static final String TRUE = "true";
 
   private static final String FALSE = "false";
@@ -98,6 +106,12 @@ public class JalviewLite extends Applet implements
     return StructureSelectionManager.getStructureSelectionManager(this);
   }
 
+  @Override
+  public StructureSelectionManagerProvider getStructureSelectionManagerProvider()
+  {
+    return this;
+  }
+
   // /////////////////////////////////////////
   // The following public methods may be called
   // externally, eg via javascript in HTML page
@@ -131,7 +145,7 @@ public class JalviewLite extends Applet implements
    * .AlignFrame)
    */
   @Override
-  public String getSelectedSequencesFrom(AlignFrame alf)
+  public String getSelectedSequencesFrom(AlignFrameI alf)
   {
     return getSelectedSequencesFrom(alf, separator); // ""+0x00AC);
   }
@@ -144,17 +158,18 @@ public class JalviewLite extends Applet implements
    * .AlignFrame, java.lang.String)
    */
   @Override
-  public String getSelectedSequencesFrom(AlignFrame alf, String sep)
+  public String getSelectedSequencesFrom(AlignFrameI alf, String sep)
   {
     StringBuffer result = new StringBuffer("");
     if (sep == null || sep.length() == 0)
     {
       sep = separator; // "+0x00AC;
     }
-    if (alf.viewport.getSelectionGroup() != null)
+    if (((AlignFrame) alf).viewport.getSelectionGroup() != null)
     {
-      SequenceI[] seqs = alf.viewport.getSelectionGroup()
-              .getSequencesInOrder(alf.viewport.getAlignment());
+      SequenceI[] seqs = ((AlignFrame) alf).viewport.getSelectionGroup()
+              .getSequencesInOrder(
+                      ((AlignFrame) alf).viewport.getAlignment());
 
       for (int i = 0; i < seqs.length; i++)
       {
@@ -187,12 +202,12 @@ public class JalviewLite extends Applet implements
    * java.lang.String, java.lang.String, java.lang.String)
    */
   @Override
-  public void highlightIn(final AlignFrame alf, final String sequenceId,
+  public void highlightIn(final AlignFrameI alf, final String sequenceId,
           final String position, final String alignedPosition)
   {
     // TODO: could try to highlight in all alignments if alf==null
     jalview.analysis.SequenceIdMatcher matcher = new jalview.analysis.SequenceIdMatcher(
-            alf.viewport.getAlignment().getSequencesArray());
+            ((AlignFrame) alf).viewport.getAlignment().getSequencesArray());
     final SequenceI sq = matcher.findIdMatch(sequenceId);
     if (sq != null)
     {
@@ -208,9 +223,8 @@ public class JalviewLite extends Applet implements
       final StructureSelectionManagerProvider me = this;
       final int pos = apos;
       // use vamsas listener to broadcast to all listeners in scope
-      if (alignedPosition != null
-              && (alignedPosition.trim().length() == 0 || alignedPosition
-                      .toLowerCase().indexOf("false") > -1))
+      if (alignedPosition != null && (alignedPosition.trim().length() == 0
+              || alignedPosition.toLowerCase().indexOf("false") > -1))
       {
         java.awt.EventQueue.invokeLater(new Runnable()
         {
@@ -268,7 +282,7 @@ public class JalviewLite extends Applet implements
    * java.lang.String, java.lang.String)
    */
   @Override
-  public void selectIn(AlignFrame alf, String sequenceIds, String columns)
+  public void selectIn(AlignFrameI alf, String sequenceIds, String columns)
   {
     selectIn(alf, sequenceIds, columns, separator);
   }
@@ -280,7 +294,7 @@ public class JalviewLite extends Applet implements
    * java.lang.String, java.lang.String, java.lang.String)
    */
   @Override
-  public void selectIn(final AlignFrame alf, String sequenceIds,
+  public void selectIn(final AlignFrameI alf, String sequenceIds,
           String columns, String sep)
   {
     if (sep == null || sep.length() == 0)
@@ -296,13 +310,13 @@ public class JalviewLite extends Applet implements
       }
     }
     // deparse fields
-    String[] ids = separatorListToArray(sequenceIds, sep);
-    String[] cols = separatorListToArray(columns, sep);
+    String[] ids = JalviewAppLoader.separatorListToArray(sequenceIds, sep);
+    String[] cols = JalviewAppLoader.separatorListToArray(columns, sep);
     final SequenceGroup sel = new SequenceGroup();
     final ColumnSelection csel = new ColumnSelection();
-    AlignmentI al = alf.viewport.getAlignment();
+    AlignmentI al = ((AlignFrame) alf).viewport.getAlignment();
     jalview.analysis.SequenceIdMatcher matcher = new jalview.analysis.SequenceIdMatcher(
-            alf.viewport.getAlignment().getSequencesArray());
+            ((AlignFrame) alf).viewport.getAlignment().getSequencesArray());
     int start = 0, end = al.getWidth(), alw = al.getWidth();
     boolean seqsfound = true;
     if (ids != null && ids.length > 0)
@@ -343,8 +357,8 @@ public class JalviewLite extends Applet implements
             from--;
           } catch (NumberFormatException ex)
           {
-            System.err
-                    .println("ERROR: Couldn't parse first integer in range element column selection string '"
+            System.err.println(
+                    "ERROR: Couldn't parse first integer in range element column selection string '"
                             + cl + "' - format is 'from-to'");
             return;
           }
@@ -354,8 +368,8 @@ public class JalviewLite extends Applet implements
             to--;
           } catch (NumberFormatException ex)
           {
-            System.err
-                    .println("ERROR: Couldn't parse second integer in range element column selection string '"
+            System.err.println(
+                    "ERROR: Couldn't parse second integer in range element column selection string '"
                             + cl + "' - format is 'from-to'");
             return;
           }
@@ -421,8 +435,8 @@ public class JalviewLite extends Applet implements
             }
             else
             {
-              System.err
-                      .println("ERROR: Couldn't parse integer from point selection element of column selection string '"
+              System.err.println(
+                      "ERROR: Couldn't parse integer from point selection element of column selection string '"
                               + cl + "'");
               return;
             }
@@ -472,7 +486,7 @@ public class JalviewLite extends Applet implements
         SequenceI rs = sel.getSequenceAt(0);
         start = rs.findIndex(start);
         end = rs.findIndex(end);
-        List<Integer> cs = new ArrayList<Integer>(csel.getSelected());
+        List<Integer> cs = new ArrayList<>(csel.getSelected());
         csel.clear();
         for (Integer selectedCol : cs)
         {
@@ -486,8 +500,8 @@ public class JalviewLite extends Applet implements
         @Override
         public void run()
         {
-          alf.select(sel, csel, alf.getAlignViewport().getAlignment()
-                  .getHiddenColumns());
+          ((AlignFrame) alf).select(sel, csel, ((AlignFrame) alf)
+                  .getAlignViewport().getAlignment().getHiddenColumns());
         }
       });
     }
@@ -501,7 +515,8 @@ public class JalviewLite extends Applet implements
    * String, java.lang.String)
    */
   @Override
-  public String getSelectedSequencesAsAlignment(String format, String suffix)
+  public String getSelectedSequencesAsAlignment(String format,
+          String suffix)
   {
     return getSelectedSequencesAsAlignmentFrom(getDefaultTargetFrame(),
             format, suffix);
@@ -515,20 +530,21 @@ public class JalviewLite extends Applet implements
    * .appletgui.AlignFrame, java.lang.String, java.lang.String)
    */
   @Override
-  public String getSelectedSequencesAsAlignmentFrom(AlignFrame alf,
+  public String getSelectedSequencesAsAlignmentFrom(AlignFrameI alf,
           String format, String suffix)
   {
     try
     {
       FileFormatI theFormat = FileFormats.getInstance().forName(format);
       boolean seqlimits = suffix.equalsIgnoreCase(TRUE);
-      if (alf.viewport.getSelectionGroup() != null)
+      if (((AlignFrame) alf).viewport.getSelectionGroup() != null)
       {
         // JBPNote: getSelectionAsNewSequence behaviour has changed - this
         // method now returns a full copy of sequence data
         // TODO consider using getSequenceSelection instead here
         String reply = new AppletFormatAdapter().formatSequences(theFormat,
-                new Alignment(alf.viewport.getSelectionAsNewSequence()),
+                new Alignment(((AlignFrame) alf).viewport
+                        .getSelectionAsNewSequence()),
                 seqlimits);
         return reply;
       }
@@ -560,7 +576,7 @@ public class JalviewLite extends Applet implements
    * )
    */
   @Override
-  public String getAlignmentOrderFrom(AlignFrame alf)
+  public String getAlignmentOrderFrom(AlignFrameI alf)
   {
     return getAlignmentOrderFrom(alf, separator);
   }
@@ -573,9 +589,10 @@ public class JalviewLite extends Applet implements
    * , java.lang.String)
    */
   @Override
-  public String getAlignmentOrderFrom(AlignFrame alf, String sep)
+  public String getAlignmentOrderFrom(AlignFrameI alf, String sep)
   {
-    AlignmentI alorder = alf.getAlignViewport().getAlignment();
+    AlignmentI alorder = ((AlignFrame) alf).getAlignViewport()
+            .getAlignment();
     String[] order = new String[alorder.getHeight()];
     for (int i = 0; i < order.length; i++)
     {
@@ -616,15 +633,16 @@ public class JalviewLite extends Applet implements
    * java.lang.String, java.lang.String, java.lang.String)
    */
   @Override
-  public String orderAlignmentBy(AlignFrame alf, String order,
+  public String orderAlignmentBy(AlignFrameI alf, String order,
           String undoName, String sep)
   {
-    String[] ids = separatorListToArray(order, sep);
+    String[] ids = JalviewAppLoader.separatorListToArray(order, sep);
     SequenceI[] sqs = null;
     if (ids != null && ids.length > 0)
     {
       jalview.analysis.SequenceIdMatcher matcher = new jalview.analysis.SequenceIdMatcher(
-              alf.viewport.getAlignment().getSequencesArray());
+              ((AlignFrame) alf).viewport.getAlignment()
+                      .getSequencesArray());
       int s = 0;
       sqs = new SequenceI[ids.length];
       for (int i = 0; i < ids.length; i++)
@@ -664,7 +682,7 @@ public class JalviewLite extends Applet implements
     final String _undoName = undoName;
     // TODO: deal with synchronization here: cannot raise any events until after
     // this has returned.
-    return alf.sortBy(aorder, _undoName) ? TRUE : "";
+    return ((AlignFrame) alf).sortBy(aorder, _undoName) ? TRUE : "";
   }
 
   /*
@@ -686,7 +704,7 @@ public class JalviewLite extends Applet implements
    * java.lang.String)
    */
   @Override
-  public String getAlignmentFrom(AlignFrame alf, String format)
+  public String getAlignmentFrom(AlignFrameI alf, String format)
   {
     return getAlignmentFrom(alf, format, TRUE);
   }
@@ -711,7 +729,7 @@ public class JalviewLite extends Applet implements
    * java.lang.String, java.lang.String)
    */
   @Override
-  public String getAlignmentFrom(AlignFrame alf, String format,
+  public String getAlignmentFrom(AlignFrameI alf, String format,
           String suffix)
   {
     try
@@ -720,7 +738,7 @@ public class JalviewLite extends Applet implements
 
       FileFormatI theFormat = FileFormats.getInstance().forName(format);
       String reply = new AppletFormatAdapter().formatSequences(theFormat,
-              alf.viewport.getAlignment(), seqlimits);
+              ((AlignFrame) alf).viewport.getAlignment(), seqlimits);
       return reply;
     } catch (IllegalArgumentException ex)
     {
@@ -749,17 +767,19 @@ public class JalviewLite extends Applet implements
    * , java.lang.String)
    */
   @Override
-  public void loadAnnotationFrom(AlignFrame alf, String annotation)
+  public void loadAnnotationFrom(AlignFrameI alf, String annotation)
   {
-    if (new AnnotationFile().annotateAlignmentView(alf.getAlignViewport(),
+    if (new AnnotationFile().annotateAlignmentView(
+            ((AlignFrame) alf).getAlignViewport(),
             annotation, DataSourceType.PASTE))
     {
-      alf.alignPanel.fontChanged();
-      alf.alignPanel.setScrollValues(0, 0);
+      ((AlignFrame) alf).alignPanel.fontChanged();
+      ((AlignFrame) alf).alignPanel.setScrollValues(0, 0);
     }
     else
     {
-      alf.parseFeaturesFile(annotation, DataSourceType.PASTE);
+      ((AlignFrame) alf).parseFeaturesFile(annotation,
+              DataSourceType.PASTE);
     }
   }
 
@@ -782,10 +802,11 @@ public class JalviewLite extends Applet implements
    * , java.lang.String)
    */
   @Override
-  public boolean loadFeaturesFrom(AlignFrame alf, String features,
+  public boolean loadFeaturesFrom(AlignFrameI alf, String features,
           boolean autoenabledisplay)
   {
-    return alf.parseFeaturesFile(features, DataSourceType.PASTE,
+    return ((AlignFrame) alf).parseFeaturesFile(features,
+            DataSourceType.PASTE,
             autoenabledisplay);
   }
 
@@ -808,9 +829,9 @@ public class JalviewLite extends Applet implements
    * java.lang.String)
    */
   @Override
-  public String getFeaturesFrom(AlignFrame alf, String format)
+  public String getFeaturesFrom(AlignFrameI alf, String format)
   {
-    return alf.outputFeatures(false, format);
+    return ((AlignFrame) alf).outputFeatures(false, format);
   }
 
   /*
@@ -832,9 +853,9 @@ public class JalviewLite extends Applet implements
    * )
    */
   @Override
-  public String getAnnotationFrom(AlignFrame alf)
+  public String getAnnotationFrom(AlignFrameI alf)
   {
-    return alf.outputAnnotations(false);
+    return ((AlignFrame) alf).outputAnnotations(false);
   }
 
   /*
@@ -865,9 +886,9 @@ public class JalviewLite extends Applet implements
    * @see jalview.bin.JalviewLiteJsApi#newViewFrom(jalview.appletgui.AlignFrame)
    */
   @Override
-  public AlignFrame newViewFrom(AlignFrame alf)
+  public AlignFrame newViewFrom(AlignFrameI alf)
   {
-    return alf.newView(null);
+    return ((AlignFrame) alf).newView(null);
   }
 
   /*
@@ -877,9 +898,9 @@ public class JalviewLite extends Applet implements
    * java.lang.String)
    */
   @Override
-  public AlignFrame newViewFrom(AlignFrame alf, String name)
+  public AlignFrame newViewFrom(AlignFrameI alf, String name)
   {
-    return alf.newView(name);
+    return ((AlignFrame) alf).newView(name);
   }
 
   /*
@@ -921,7 +942,7 @@ public class JalviewLite extends Applet implements
     setMouseoverListener(currentAlignFrame, listener);
   }
 
-  private Vector<jalview.javascript.JSFunctionExec> javascriptListeners = new Vector<jalview.javascript.JSFunctionExec>();
+  private Vector<jalview.javascript.JSFunctionExec> javascriptListeners = new Vector<>();
 
   /*
    * (non-Javadoc)
@@ -931,28 +952,30 @@ public class JalviewLite extends Applet implements
    * , java.lang.String)
    */
   @Override
-  public void setMouseoverListener(AlignFrame af, String listener)
+  public void setMouseoverListener(AlignFrameI af, String listener)
   {
     if (listener != null)
     {
       listener = listener.trim();
       if (listener.length() == 0)
       {
-        System.err
-                .println("jalview Javascript error: Ignoring empty function for mouseover listener.");
+        System.err.println(
+                "jalview Javascript error: Ignoring empty function for mouseover listener.");
         return;
       }
     }
     jalview.javascript.MouseOverListener mol = new jalview.javascript.MouseOverListener(
-            this, af, listener);
+            this, (AlignFrame) af, listener, debug);
     javascriptListeners.addElement(mol);
     StructureSelectionManager.getStructureSelectionManager(this)
             .addStructureViewerListener(mol);
     if (debug)
     {
       System.err.println("Added a mouseover listener for "
-              + ((af == null) ? "All frames" : "Just views for "
-                      + af.getAlignViewport().getSequenceSetId()));
+              + ((af == null) ? "All frames"
+                      : "Just views for "
+                              + ((AlignFrame) af).getAlignViewport()
+                                      .getSequenceSetId()));
       System.err.println("There are now " + javascriptListeners.size()
               + " listeners in total.");
     }
@@ -977,28 +1000,30 @@ public class JalviewLite extends Applet implements
    * , java.lang.String)
    */
   @Override
-  public void setSelectionListener(AlignFrame af, String listener)
+  public void setSelectionListener(AlignFrameI af, String listener)
   {
     if (listener != null)
     {
       listener = listener.trim();
       if (listener.length() == 0)
       {
-        System.err
-                .println("jalview Javascript error: Ignoring empty function for selection listener.");
+        System.err.println(
+                "jalview Javascript error: Ignoring empty function for selection listener.");
         return;
       }
     }
     jalview.javascript.JsSelectionSender mol = new jalview.javascript.JsSelectionSender(
-            this, af, listener);
+            this, (AlignFrame) af, listener, debug);
     javascriptListeners.addElement(mol);
     StructureSelectionManager.getStructureSelectionManager(this)
             .addSelectionListener(mol);
     if (debug)
     {
       System.err.println("Added a selection listener for "
-              + ((af == null) ? "All frames" : "Just views for "
-                      + af.getAlignViewport().getSequenceSetId()));
+              + ((af == null) ? "All frames"
+                      : "Just views for "
+                              + ((AlignFrame) af).getAlignViewport()
+                                      .getSequenceSetId()));
       System.err.println("There are now " + javascriptListeners.size()
               + " listeners in total.");
     }
@@ -1023,13 +1048,13 @@ public class JalviewLite extends Applet implements
       listener = listener.trim();
       if (listener.length() == 0)
       {
-        System.err
-                .println("jalview Javascript error: Ignoring empty function for selection listener.");
+        System.err.println(
+                "jalview Javascript error: Ignoring empty function for selection listener.");
         return;
       }
     }
     MouseOverStructureListener mol = new MouseOverStructureListener(this,
-            listener, separatorListToArray(modelSet));
+            listener, separatorListToArray(modelSet), debug);
     javascriptListeners.addElement(mol);
     StructureSelectionManager.getStructureSelectionManager(this)
             .addStructureViewerListener(mol);
@@ -1050,7 +1075,7 @@ public class JalviewLite extends Applet implements
    * .AlignFrame, java.lang.String)
    */
   @Override
-  public void removeJavascriptListener(AlignFrame af, String listener)
+  public void removeJavascriptListener(AlignFrameI af, String listener)
   {
     if (listener != null)
     {
@@ -1065,9 +1090,8 @@ public class JalviewLite extends Applet implements
     {
       Object lstn = javascriptListeners.elementAt(ms);
       JsCallBack lstner = (JsCallBack) lstn;
-      if ((af == null || lstner.getAlignFrame() == af)
-              && (listener == null || lstner.getListenerFunction().equals(
-                      listener)))
+      if ((af == null || lstner.getAlignFrame() == af) && (listener == null
+              || lstner.getListenerFunction().equals(listener)))
       {
         javascriptListeners.removeElement(lstner);
         msSize--;
@@ -1146,11 +1170,10 @@ public class JalviewLite extends Applet implements
     }
     if (jsFunctionExec != null)
     {
-      jsFunctionExec.stopQueue();
-      jsFunctionExec.jvlite = null;
+      jsFunctionExec.tidyUp();
+      jsFunctionExec = null;
     }
     initialAlignFrame = null;
-    jsFunctionExec = null;
     javascriptListeners = null;
     StructureSelectionManager.release(this);
   }
@@ -1164,8 +1187,8 @@ public class JalviewLite extends Applet implements
    * java.lang.String, java.lang.String)
    */
   @Override
-  public void mouseOverStructure(final String pdbResNum,
-          final String chain, final String pdbfile)
+  public void mouseOverStructure(final String pdbResNum, final String chain,
+          final String pdbfile)
   {
     final StructureSelectionManagerProvider me = this;
     java.awt.EventQueue.invokeLater(new Runnable()
@@ -1180,9 +1203,9 @@ public class JalviewLite extends Applet implements
                           chain, pdbfile);
           if (debug)
           {
-            System.err.println("mouseOver for '" + pdbResNum
-                    + "' in chain '" + chain + "' in structure '" + pdbfile
-                    + "'");
+            System.err
+                    .println("mouseOver for '" + pdbResNum + "' in chain '"
+                            + chain + "' in structure '" + pdbfile + "'");
           }
         } catch (NumberFormatException e)
         {
@@ -1202,7 +1225,7 @@ public class JalviewLite extends Applet implements
    * java.lang.String, java.lang.String)
    */
   @Override
-  public void scrollViewToIn(final AlignFrame alf, final String topRow,
+  public void scrollViewToIn(final AlignFrameI alf, final String topRow,
           final String leftHandColumn)
   {
     java.awt.EventQueue.invokeLater(new Runnable()
@@ -1212,8 +1235,8 @@ public class JalviewLite extends Applet implements
       {
         try
         {
-          alf.scrollTo(new Integer(topRow).intValue(), new Integer(
-                  leftHandColumn).intValue());
+          ((AlignFrame) alf).scrollTo(new Integer(topRow).intValue(),
+                  new Integer(leftHandColumn).intValue());
 
         } catch (Exception ex)
         {
@@ -1234,7 +1257,7 @@ public class JalviewLite extends Applet implements
    * .AlignFrame, java.lang.String)
    */
   @Override
-  public void scrollViewToRowIn(final AlignFrame alf, final String topRow)
+  public void scrollViewToRowIn(final AlignFrameI alf, final String topRow)
   {
 
     java.awt.EventQueue.invokeLater(new Runnable()
@@ -1244,7 +1267,7 @@ public class JalviewLite extends Applet implements
       {
         try
         {
-          alf.scrollToRow(new Integer(topRow).intValue());
+          ((AlignFrame) alf).scrollToRow(new Integer(topRow).intValue());
 
         } catch (Exception ex)
         {
@@ -1265,7 +1288,7 @@ public class JalviewLite extends Applet implements
    * .AlignFrame, java.lang.String)
    */
   @Override
-  public void scrollViewToColumnIn(final AlignFrame alf,
+  public void scrollViewToColumnIn(final AlignFrameI alf,
           final String leftHandColumn)
   {
     java.awt.EventQueue.invokeLater(new Runnable()
@@ -1276,12 +1299,13 @@ public class JalviewLite extends Applet implements
       {
         try
         {
-          alf.scrollToColumn(new Integer(leftHandColumn).intValue());
+          ((AlignFrame) alf)
+                  .scrollToColumn(new Integer(leftHandColumn).intValue());
 
         } catch (Exception ex)
         {
-          System.err
-                  .println("Couldn't parse integer arguments (leftHandColumn='"
+          System.err.println(
+                  "Couldn't parse integer arguments (leftHandColumn='"
                           + leftHandColumn + "')");
           ex.printStackTrace();
         }
@@ -1322,9 +1346,9 @@ public class JalviewLite extends Applet implements
 
   boolean embedded = false;
 
-  private boolean checkForJmol = true;
+  boolean checkForJmol = true;
 
-  private boolean checkedForJmol = false; // ensure we don't check for jmol
+  boolean checkedForJmol = false; // ensure we don't check for jmol
 
   // every time the app is re-inited
 
@@ -1333,11 +1357,15 @@ public class JalviewLite extends Applet implements
   private boolean alignPdbStructures = false;
 
   /**
-   * use an external structure viewer exclusively (no jmols or MCViews will be
+   * use an external structure viewer exclusively (no jmols or mc_views will be
    * opened by JalviewLite itself)
    */
   public boolean useXtrnalSviewer = false;
 
+  public JalviewAppLoader appLoader;
+
+  public AlignFrame loaderFrame;
+
   public static boolean debug = false;
 
   static String builddate = null, version = null, installation = null;
@@ -1355,8 +1383,8 @@ public class JalviewLite extends Applet implements
       {
         try
         {
-          BufferedReader reader = new BufferedReader(new InputStreamReader(
-                  url.openStream()));
+          BufferedReader reader = new BufferedReader(
+                  new InputStreamReader(url.openStream()));
           String line;
           while ((line = reader.readLine()) != null)
           {
@@ -1423,8 +1451,8 @@ public class JalviewLite extends Applet implements
 
     } catch (Exception ex)
     {
-      System.err
-              .println("Warning: No JalviewLite javascript callbacks available.");
+      System.err.println(
+              "Warning: No JalviewLite javascript callbacks available.");
       if (debug)
       {
         ex.printStackTrace();
@@ -1466,11 +1494,13 @@ public class JalviewLite extends Applet implements
       }
       else
       {
-        throw new Error(
-                MessageManager
-                        .getString("error.invalid_separator_parameter"));
+        throw new Error(MessageManager
+                .getString("error.invalid_separator_parameter"));
       }
     }
+
+    // Background color
+
     int r = 255;
     int g = 255;
     int b = 255;
@@ -1490,68 +1520,33 @@ public class JalviewLite extends Applet implements
         b = 255;
       }
     }
+    setBackground(new Color(r, g, b));
+
     param = getParameter("label");
     if (param != null)
     {
       launcher.setLabel(param);
     }
 
-    setBackground(new Color(r, g, b));
-
     file = getParameter("file");
 
     if (file == null)
     {
-      // Maybe the sequences are added as parameters
-      StringBuffer data = new StringBuffer("PASTE");
-      int i = 1;
-      while ((file = getParameter("sequence" + i)) != null)
-      {
-        data.append(file.toString() + "\n");
-        i++;
-      }
-      if (data.length() > 5)
-      {
-        file = data.toString();
-      }
+      file = appLoader.getPastedSequence(this);
     }
     if (getDefaultParameter("enableSplitFrame", true))
     {
       file2 = getParameter("file2");
     }
 
-    embedded = TRUE.equalsIgnoreCase(getParameter("embedded"));
+    embedded = (TRUE.equalsIgnoreCase(getParameter("embedded"))
+            || file != null
+                    && FALSE.equalsIgnoreCase(getParameter("showbutton")));
     if (embedded)
     {
-      LoadingThread loader = new LoadingThread(file, file2, this);
-      loader.start();
-    }
-    else if (file != null)
-    {
-      /*
-       * Start the applet immediately or show a button to start it
-       */
-      if (FALSE.equalsIgnoreCase(getParameter("showbutton")))
-      {
-        LoadingThread loader = new LoadingThread(file, file2, this);
-        loader.start();
-      }
-      else
-      {
-        add(launcher);
-        launcher.addActionListener(new java.awt.event.ActionListener()
-        {
-          @Override
-          public void actionPerformed(ActionEvent e)
-          {
-            LoadingThread loader = new LoadingThread(file, file2,
-                    JalviewLite.this);
-            loader.start();
-          }
-        });
-      }
+      startLoading();
     }
-    else
+    else if (file == null)
     {
       // jalview initialisation with no alignment. loadAlignment() method can
       // still be called to open new alignments.
@@ -1559,6 +1554,24 @@ public class JalviewLite extends Applet implements
       fileFound = false;
       callInitCallback();
     }
+    else
+    {
+      add(launcher);
+      launcher.addActionListener(new java.awt.event.ActionListener()
+      {
+        @Override
+        public void actionPerformed(ActionEvent e)
+        {
+          startLoading();
+        }
+      });
+    }
+  }
+
+  protected void startLoading()
+  {
+    LoadingThread loader = new LoadingThread(file, file2, this);
+    loader.start();
   }
 
   private void initLiveConnect()
@@ -1598,7 +1611,7 @@ public class JalviewLite extends Applet implements
     }
   }
 
-  private void callInitCallback()
+  void callInitCallback()
   {
     String initjscallback = getParameter("oninit");
     if (initjscallback == null)
@@ -1624,9 +1637,9 @@ public class JalviewLite extends Applet implements
         try
         {
           // do onInit with the JS executor thread
-          new JSFunctionExec(this).executeJavascriptFunction(true,
-                  initjscallback, null, "Calling oninit callback '"
-                          + initjscallback + "'.");
+          new JSFunctionExec(this, debug).executeJavascriptFunction(true,
+                  initjscallback, null,
+                  "Calling oninit callback '" + initjscallback + "'.");
         } catch (Exception e)
         {
           System.err.println("Exception when executing _oninit callback '"
@@ -1737,8 +1750,8 @@ public class JalviewLite extends Applet implements
       g.fillRect(0, 0, getSize().width, getSize().height);
       g.setColor(Color.red);
       g.drawString(
-              MessageManager.getString("label.jalview_cannot_open_file"),
-              5, 15);
+              MessageManager.getString("label.jalview_cannot_open_file"), 5,
+              15);
       g.drawString("\"" + file + "\"", 5, 30);
     }
     else if (embedded)
@@ -1798,8 +1811,8 @@ public class JalviewLite extends Applet implements
           }
           if (!jmolAvailable)
           {
-            System.out
-                    .println("Jmol not available - Using MCview for structures");
+            System.out.println(
+                    "Jmol not available - Using mc_view for structures");
           }
         } catch (java.lang.ClassNotFoundException ex)
         {
@@ -1810,8 +1823,8 @@ public class JalviewLite extends Applet implements
         jmolAvailable = false;
         if (debug)
         {
-          System.err
-                  .println("Skipping Jmol check. Will use MCView (probably)");
+          System.err.println(
+                  "Skipping Jmol check. Will use mc_view (probably)");
         }
       }
       checkedForJmol = true;
@@ -1837,7 +1850,7 @@ public class JalviewLite extends Applet implements
 
     JalviewLite applet;
 
-    private void dbgMsg(String msg)
+    public void dbgMsg(String msg)
     {
       if (JalviewLite.debug)
       {
@@ -1854,67 +1867,10 @@ public class JalviewLite extends Applet implements
      */
     public String resolveFileProtocol(String path)
     {
-      /*
-       * is it paste data?
-       */
-      if (path.startsWith("PASTE"))
-      {
-        protocol = DataSourceType.PASTE;
-        return path.substring(5);
-      }
-
-      /*
-       * is it a URL?
-       */
-      if (path.indexOf("://") != -1)
-      {
-        protocol = DataSourceType.URL;
-        return path;
-      }
 
-      /*
-       * try relative to document root
-       */
-      URL documentBase = getDocumentBase();
-      String withDocBase = resolveUrlForLocalOrAbsolute(path, documentBase);
-      if (HttpUtils.isValidUrl(withDocBase))
-      {
-        if (debug)
-        {
-          System.err.println("Prepended document base '" + documentBase
-                  + "' to make: '" + withDocBase + "'");
-        }
-        protocol = DataSourceType.URL;
-        return withDocBase;
-      }
-
-      /*
-       * try relative to codebase (if different to document base)
-       */
-      URL codeBase = getCodeBase();
-      String withCodeBase = applet.resolveUrlForLocalOrAbsolute(path,
-              codeBase);
-      if (!withCodeBase.equals(withDocBase)
-              && HttpUtils.isValidUrl(withCodeBase))
-      {
-        protocol = DataSourceType.URL;
-        if (debug)
-        {
-          System.err.println("Prepended codebase '" + codeBase
-                  + "' to make: '" + withCodeBase + "'");
-        }
-        return withCodeBase;
-      }
-
-      /*
-       * try locating by classloader; try this last so files in the directory
-       * are resolved using document base
-       */
-      if (inArchive(path))
-      {
-        protocol = DataSourceType.CLASSLOADER;
-      }
-      return path;
+      String[] ret = new String[] { path };
+      protocol = JalviewAppLoader.resolveFileProtocol(applet, ret);
+      return ret[0];
     }
 
     public LoadingThread(String file, String file2, JalviewLite _applet)
@@ -1949,7 +1905,8 @@ public class JalviewLite extends Applet implements
      */
     private void startLoading()
     {
-      dbgMsg("Loading thread started with:\n>>file\n" + _file + ">>endfile");
+      dbgMsg("Loading thread started with:\n>>file\n" + _file
+              + ">>endfile");
 
       dbgMsg("Loading started.");
 
@@ -1958,25 +1915,16 @@ public class JalviewLite extends Applet implements
       if (newAlignFrame != null)
       {
         addToDisplay(newAlignFrame, newAlignFrame2);
-        loadTree(newAlignFrame);
-
-        loadScoreFile(newAlignFrame);
-
-        loadFeatures(newAlignFrame);
-
-        loadAnnotations(newAlignFrame);
-
-        loadJnetFile(newAlignFrame);
-
-        loadPdbFiles(newAlignFrame);
+        applet.loaderFrame = newAlignFrame;
+        appLoader.load(applet);
       }
       else
       {
         fileFound = false;
         applet.remove(launcher);
         applet.repaint();
+        callInitCallback();
       }
-      callInitCallback();
     }
 
     /**
@@ -2050,14 +1998,14 @@ public class JalviewLite extends Applet implements
 
           if (protocol == DataSourceType.PASTE)
           {
-            newAlignFrame.setTitle(MessageManager.formatMessage(
-                    "label.sequences_from", new Object[] { applet
-                            .getDocumentBase().toString() }));
+            newAlignFrame.setTitle(MessageManager
+                    .formatMessage("label.sequences_from", new Object[]
+                    { applet.getDocumentBase().toString() }));
           }
 
           newAlignFrame.statusBar.setText(MessageManager.formatMessage(
-                  "label.successfully_loaded_file",
-                  new Object[] { resolvedFile }));
+                  "label.successfully_loaded_file", new Object[]
+                  { resolvedFile }));
 
           return newAlignFrame;
         }
@@ -2080,8 +2028,8 @@ public class JalviewLite extends Applet implements
             dbgMsg(">>>Dump finished.");
           } catch (Exception e)
           {
-            System.err
-                    .println("Exception when trying to dump the content of the file parameter.");
+            System.err.println(
+                    "Exception when trying to dump the content of the file parameter.");
             e.printStackTrace();
           }
         }
@@ -2089,389 +2037,6 @@ public class JalviewLite extends Applet implements
       return null;
     }
 
-    /**
-     * Load PDBFiles if any specified by parameter(s). Returns true if loaded,
-     * else false.
-     * 
-     * @param alignFrame
-     * @return
-     */
-    protected boolean loadPdbFiles(AlignFrame alignFrame)
-    {
-      boolean result = false;
-      /*
-       * <param name="alignpdbfiles" value="false/true"/> Undocumented for 2.6 -
-       * related to JAL-434
-       */
-
-      applet.setAlignPdbStructures(getDefaultParameter("alignpdbfiles",
-              false));
-      /*
-       * <param name="PDBfile" value="1gaq.txt PDB|1GAQ|1GAQ|A PDB|1GAQ|1GAQ|B
-       * PDB|1GAQ|1GAQ|C">
-       * 
-       * <param name="PDBfile2" value="1gaq.txt A=SEQA B=SEQB C=SEQB">
-       * 
-       * <param name="PDBfile3" value="1q0o Q45135_9MICO">
-       */
-
-      int pdbFileCount = 0;
-      // Accumulate pdbs here if they are heading for the same view (if
-      // alignPdbStructures is true)
-      Vector pdbs = new Vector();
-      // create a lazy matcher if we're asked to
-      jalview.analysis.SequenceIdMatcher matcher = (applet
-              .getDefaultParameter("relaxedidmatch", false)) ? new jalview.analysis.SequenceIdMatcher(
-              alignFrame.getAlignViewport().getAlignment()
-                      .getSequencesArray()) : null;
-
-      String param;
-      do
-      {
-        if (pdbFileCount > 0)
-        {
-          param = applet.getParameter("PDBFILE" + pdbFileCount);
-        }
-        else
-        {
-          param = applet.getParameter("PDBFILE");
-        }
-
-        if (param != null)
-        {
-          PDBEntry pdb = new PDBEntry();
-
-          String seqstring;
-          SequenceI[] seqs = null;
-          String[] chains = null;
-
-          StringTokenizer st = new StringTokenizer(param, " ");
-
-          if (st.countTokens() < 2)
-          {
-            String sequence = applet.getParameter("PDBSEQ");
-            if (sequence != null)
-            {
-              seqs = new SequenceI[] { matcher == null ? (Sequence) alignFrame
-                      .getAlignViewport().getAlignment().findName(sequence)
-                      : matcher.findIdMatch(sequence) };
-            }
-
-          }
-          else
-          {
-            param = st.nextToken();
-            List<SequenceI> tmp = new ArrayList<SequenceI>();
-            List<String> tmp2 = new ArrayList<String>();
-
-            while (st.hasMoreTokens())
-            {
-              seqstring = st.nextToken();
-              StringTokenizer st2 = new StringTokenizer(seqstring, "=");
-              if (st2.countTokens() > 1)
-              {
-                // This is the chain
-                tmp2.add(st2.nextToken());
-                seqstring = st2.nextToken();
-              }
-              tmp.add(matcher == null ? (Sequence) alignFrame
-                      .getAlignViewport().getAlignment()
-                      .findName(seqstring) : matcher.findIdMatch(seqstring));
-            }
-
-            seqs = tmp.toArray(new SequenceI[tmp.size()]);
-            if (tmp2.size() == tmp.size())
-            {
-              chains = tmp2.toArray(new String[tmp2.size()]);
-            }
-          }
-          param = resolveFileProtocol(param);
-          // TODO check JAL-357 for files in a jar (CLASSLOADER)
-          pdb.setFile(param);
-
-          if (seqs != null)
-          {
-            for (int i = 0; i < seqs.length; i++)
-            {
-              if (seqs[i] != null)
-              {
-                ((Sequence) seqs[i]).addPDBId(pdb);
-                StructureSelectionManager.getStructureSelectionManager(
-                        applet).registerPDBEntry(pdb);
-              }
-              else
-              {
-                if (JalviewLite.debug)
-                {
-                  // this may not really be a problem but we give a warning
-                  // anyway
-                  System.err
-                          .println("Warning: Possible input parsing error: Null sequence for attachment of PDB (sequence "
-                                  + i + ")");
-                }
-              }
-            }
-
-            if (!alignPdbStructures)
-            {
-              alignFrame.newStructureView(applet, pdb, seqs, chains,
-                      protocol);
-            }
-            else
-            {
-              pdbs.addElement(new Object[] { pdb, seqs, chains, protocol });
-            }
-          }
-        }
-
-        pdbFileCount++;
-      } while (param != null || pdbFileCount < 10);
-      if (pdbs.size() > 0)
-      {
-        SequenceI[][] seqs = new SequenceI[pdbs.size()][];
-        PDBEntry[] pdb = new PDBEntry[pdbs.size()];
-        String[][] chains = new String[pdbs.size()][];
-        String[] protocols = new String[pdbs.size()];
-        for (int pdbsi = 0, pdbsiSize = pdbs.size(); pdbsi < pdbsiSize; pdbsi++)
-        {
-          Object[] o = (Object[]) pdbs.elementAt(pdbsi);
-          pdb[pdbsi] = (PDBEntry) o[0];
-          seqs[pdbsi] = (SequenceI[]) o[1];
-          chains[pdbsi] = (String[]) o[2];
-          protocols[pdbsi] = (String) o[3];
-        }
-        alignFrame.alignedStructureView(applet, pdb, seqs, chains,
-                protocols);
-        result = true;
-      }
-      return result;
-    }
-
-    /**
-     * Load in a Jnetfile if specified by parameter. Returns true if loaded,
-     * else false.
-     * 
-     * @param alignFrame
-     * @return
-     */
-    protected boolean loadJnetFile(AlignFrame alignFrame)
-    {
-      boolean result = false;
-      String param = applet.getParameter("jnetfile");
-      if (param == null)
-      {
-        // jnet became jpred around 2016
-        param = applet.getParameter("jpredfile");
-      }
-      if (param != null)
-      {
-        try
-        {
-          param = resolveFileProtocol(param);
-          JPredFile predictions = new JPredFile(param, protocol);
-          JnetAnnotationMaker.add_annotation(predictions,
-                  alignFrame.viewport.getAlignment(), 0, false);
-          // false == do not add sequence profile from concise output
-          SequenceI repseq = alignFrame.viewport.getAlignment()
-                  .getSequenceAt(0);
-          alignFrame.viewport.getAlignment().setSeqrep(repseq);
-          HiddenColumns cs = new HiddenColumns();
-          cs.hideInsertionsFor(repseq);
-          alignFrame.viewport.getAlignment().setHiddenColumns(cs);
-          alignFrame.alignPanel.fontChanged();
-          alignFrame.alignPanel.setScrollValues(0, 0);
-          result = true;
-        } catch (Exception ex)
-        {
-          ex.printStackTrace();
-        }
-      }
-      return result;
-    }
-
-    /**
-     * Load annotations if specified by parameter. Returns true if loaded, else
-     * false.
-     * 
-     * @param alignFrame
-     * @return
-     */
-    protected boolean loadAnnotations(AlignFrame alignFrame)
-    {
-      boolean result = false;
-      String param = applet.getParameter("annotations");
-      if (param != null)
-      {
-        param = resolveFileProtocol(param);
-
-        if (new AnnotationFile().annotateAlignmentView(alignFrame.viewport,
-                param, protocol))
-        {
-          alignFrame.alignPanel.fontChanged();
-          alignFrame.alignPanel.setScrollValues(0, 0);
-          result = true;
-        }
-        else
-        {
-          System.err
-                  .println("Annotations were not added from annotation file '"
-                          + param + "'");
-        }
-      }
-      return result;
-    }
-
-    /**
-     * Load features file and view settings as specified by parameters. Returns
-     * true if features were loaded, else false.
-     * 
-     * @param alignFrame
-     * @return
-     */
-    protected boolean loadFeatures(AlignFrame alignFrame)
-    {
-      boolean result = false;
-      // ///////////////////////////
-      // modify display of features
-      // we do this before any features have been loaded, ensuring any hidden
-      // groups are hidden when features first displayed
-      //
-      // hide specific groups
-      //
-      String param = applet.getParameter("hidefeaturegroups");
-      if (param != null)
-      {
-        alignFrame.setFeatureGroupState(separatorListToArray(param), false);
-        // applet.setFeatureGroupStateOn(newAlignFrame, param, false);
-      }
-      // show specific groups
-      param = applet.getParameter("showfeaturegroups");
-      if (param != null)
-      {
-        alignFrame.setFeatureGroupState(separatorListToArray(param), true);
-        // applet.setFeatureGroupStateOn(newAlignFrame, param, true);
-      }
-      // and now load features
-      param = applet.getParameter("features");
-      if (param != null)
-      {
-        param = resolveFileProtocol(param);
-
-        result = alignFrame.parseFeaturesFile(param, protocol);
-      }
-
-      param = applet.getParameter("showFeatureSettings");
-      if (param != null && param.equalsIgnoreCase(TRUE))
-      {
-        alignFrame.viewport.setShowSequenceFeatures(true);
-        new FeatureSettings(alignFrame.alignPanel);
-      }
-      return result;
-    }
-
-    /**
-     * Load a score file if specified by parameter. Returns true if file was
-     * loaded, else false.
-     * 
-     * @param alignFrame
-     */
-    protected boolean loadScoreFile(AlignFrame alignFrame)
-    {
-      boolean result = false;
-      String sScoreFile = applet.getParameter("scoreFile");
-      if (sScoreFile != null && !"".equals(sScoreFile))
-      {
-        try
-        {
-          if (debug)
-          {
-            System.err
-                    .println("Attempting to load T-COFFEE score file from the scoreFile parameter");
-          }
-          result = alignFrame.loadScoreFile(sScoreFile);
-          if (!result)
-          {
-            System.err
-                    .println("Failed to parse T-COFFEE parameter as a valid score file ('"
-                            + sScoreFile + "')");
-          }
-        } catch (Exception e)
-        {
-          System.err.printf("Cannot read score file: '%s'. Cause: %s \n",
-                  sScoreFile, e.getMessage());
-        }
-      }
-      return result;
-    }
-
-    /**
-     * Load a tree for the alignment if specified by parameter. Returns true if
-     * a tree was loaded, else false.
-     * 
-     * @param alignFrame
-     * @return
-     */
-    protected boolean loadTree(AlignFrame alignFrame)
-    {
-      boolean result = false;
-      String treeFile = applet.getParameter("tree");
-      if (treeFile == null)
-      {
-        treeFile = applet.getParameter("treeFile");
-      }
-
-      if (treeFile != null)
-      {
-        try
-        {
-          treeFile = resolveFileProtocol(treeFile);
-          NewickFile fin = new NewickFile(treeFile, protocol);
-          fin.parse();
-
-          if (fin.getTree() != null)
-          {
-            alignFrame.loadTree(fin, treeFile);
-            result = true;
-            dbgMsg("Successfully imported tree.");
-          }
-          else
-          {
-            dbgMsg("Tree parameter did not resolve to a valid tree.");
-          }
-        } catch (Exception ex)
-        {
-          ex.printStackTrace();
-        }
-      }
-      return result;
-    }
-
-    /**
-     * Discovers whether the given file is in the Applet Archive
-     * 
-     * @param f
-     *          String
-     * @return boolean
-     */
-    boolean inArchive(String f)
-    {
-      // This might throw a security exception in certain browsers
-      // Netscape Communicator for instance.
-      try
-      {
-        boolean rtn = (getClass().getResourceAsStream("/" + f) != null);
-        if (debug)
-        {
-          System.err.println("Resource '" + f + "' was "
-                  + (rtn ? "" : "not ") + "located by classloader.");
-        }
-        return rtn;
-      } catch (Exception ex)
-      {
-        System.out.println("Exception checking resources: " + f + " " + ex);
-        return false;
-      }
-    }
   }
 
   /**
@@ -2489,8 +2054,8 @@ public class JalviewLite extends Applet implements
     {
       return initialAlignFrame;
     }
-    System.err
-            .println("Implementation error: Jalview Applet API cannot work out which AlignFrame to use.");
+    System.err.println(
+            "Implementation error: Jalview Applet API cannot work out which AlignFrame to use.");
     return null;
   }
 
@@ -2504,7 +2069,7 @@ public class JalviewLite extends Applet implements
   /**
    * set to enable the URL based javascript execution mechanism
    */
-  public boolean jsfallbackEnabled = false;
+  private boolean jsfallbackEnabled = false;
 
   /**
    * parse the string into a list
@@ -2512,66 +2077,10 @@ public class JalviewLite extends Applet implements
    * @param list
    * @return elements separated by separator
    */
+  @Override
   public String[] separatorListToArray(String list)
   {
-    return separatorListToArray(list, separator);
-  }
-
-  /**
-   * parse the string into a list
-   * 
-   * @param list
-   * @param separator
-   * @return elements separated by separator
-   */
-  public static String[] separatorListToArray(String list, String separator)
-  {
-    // TODO use StringUtils version (slightly different...)
-    int seplen = separator.length();
-    if (list == null || list.equals("") || list.equals(separator))
-    {
-      return null;
-    }
-    java.util.Vector jv = new Vector();
-    int cp = 0, pos;
-    while ((pos = list.indexOf(separator, cp)) > cp)
-    {
-      jv.addElement(list.substring(cp, pos));
-      cp = pos + seplen;
-    }
-    if (cp < list.length())
-    {
-      String c = list.substring(cp);
-      if (!c.equals(separator))
-      {
-        jv.addElement(c);
-      }
-    }
-    if (jv.size() > 0)
-    {
-      String[] v = new String[jv.size()];
-      for (int i = 0; i < v.length; i++)
-      {
-        v[i] = (String) jv.elementAt(i);
-      }
-      jv.removeAllElements();
-      if (debug)
-      {
-        System.err.println("Array from '" + separator
-                + "' separated List:\n" + v.length);
-        for (int i = 0; i < v.length; i++)
-        {
-          System.err.println("item " + i + " '" + v[i] + "'");
-        }
-      }
-      return v;
-    }
-    if (debug)
-    {
-      System.err.println("Empty Array from '" + separator
-              + "' separated List");
-    }
-    return null;
+    return JalviewAppLoader.separatorListToArray(list, separator);
   }
 
   /**
@@ -2580,49 +2089,10 @@ public class JalviewLite extends Applet implements
    * @param list
    * @return concatenated string
    */
+  @Override
   public String arrayToSeparatorList(String[] list)
   {
-    return arrayToSeparatorList(list, separator);
-  }
-
-  /**
-   * concatenate the list with separator
-   * 
-   * @param list
-   * @param separator
-   * @return concatenated string
-   */
-  public static String arrayToSeparatorList(String[] list, String separator)
-  {
-    // TODO use StringUtils version
-    StringBuffer v = new StringBuffer();
-    if (list != null && list.length > 0)
-    {
-      for (int i = 0, iSize = list.length; i < iSize; i++)
-      {
-        if (list[i] != null)
-        {
-          if (i > 0)
-          {
-            v.append(separator);
-          }
-          v.append(list[i]);
-        }
-      }
-      if (debug)
-      {
-        System.err.println("Returning '" + separator
-                + "' separated List:\n");
-        System.err.println(v);
-      }
-      return v.toString();
-    }
-    if (debug)
-    {
-      System.err.println("Returning empty '" + separator
-              + "' separated List\n");
-    }
-    return "" + separator;
+    return JalviewAppLoader.arrayToSeparatorList(list, separator);
   }
 
   /*
@@ -2633,8 +2103,8 @@ public class JalviewLite extends Applet implements
   @Override
   public String getFeatureGroups()
   {
-    String lst = arrayToSeparatorList(getDefaultTargetFrame()
-            .getFeatureGroups());
+    String lst = arrayToSeparatorList(
+            getDefaultTargetFrame().getFeatureGroups());
     return lst;
   }
 
@@ -2646,9 +2116,10 @@ public class JalviewLite extends Applet implements
    * )
    */
   @Override
-  public String getFeatureGroupsOn(AlignFrame alf)
+  public String getFeatureGroupsOn(AlignFrameI alf)
   {
-    String lst = arrayToSeparatorList(alf.getFeatureGroups());
+    String lst = arrayToSeparatorList(
+            ((AlignFrame) alf).getFeatureGroups());
     return lst;
   }
 
@@ -2660,8 +2131,8 @@ public class JalviewLite extends Applet implements
   @Override
   public String getFeatureGroupsOfState(boolean visible)
   {
-    return arrayToSeparatorList(getDefaultTargetFrame()
-            .getFeatureGroupsOfState(visible));
+    return arrayToSeparatorList(
+            getDefaultTargetFrame().getFeatureGroupsOfState(visible));
   }
 
   /*
@@ -2672,9 +2143,10 @@ public class JalviewLite extends Applet implements
    * .AlignFrame, boolean)
    */
   @Override
-  public String getFeatureGroupsOfStateOn(AlignFrame alf, boolean visible)
+  public String getFeatureGroupsOfStateOn(AlignFrameI alf, boolean visible)
   {
-    return arrayToSeparatorList(alf.getFeatureGroupsOfState(visible));
+    return arrayToSeparatorList(
+            ((AlignFrame) alf).getFeatureGroupsOfState(visible));
   }
 
   /*
@@ -2684,7 +2156,7 @@ public class JalviewLite extends Applet implements
    * AlignFrame, java.lang.String, boolean)
    */
   @Override
-  public void setFeatureGroupStateOn(final AlignFrame alf,
+  public void setFeatureGroupStateOn(final AlignFrameI alf,
           final String groups, boolean state)
   {
     final boolean st = state;// !(state==null || state.equals("") ||
@@ -2694,7 +2166,8 @@ public class JalviewLite extends Applet implements
       @Override
       public void run()
       {
-        alf.setFeatureGroupState(separatorListToArray(groups), st);
+        ((AlignFrame) alf)
+                .setFeatureGroupState(separatorListToArray(groups), st);
       }
     });
   }
@@ -2752,6 +2225,7 @@ public class JalviewLite extends Applet implements
    *          the value to return otherwise
    * @return true or false
    */
+  @Override
   public boolean getDefaultParameter(String name, boolean def)
   {
     String stn;
@@ -2773,13 +2247,15 @@ public class JalviewLite extends Applet implements
    * java.lang.String, java.lang.String, java.lang.String)
    */
   @Override
-  public boolean addPdbFile(AlignFrame alFrame, String sequenceId,
+  public boolean addPdbFile(AlignFrameI alFrame, String sequenceId,
           String pdbEntryString, String pdbFile)
   {
-    return alFrame.addPdbFile(sequenceId, pdbEntryString, pdbFile);
+    return ((AlignFrame) alFrame).addPdbFile(sequenceId, pdbEntryString,
+            pdbFile);
   }
 
-  protected void setAlignPdbStructures(boolean alignPdbStructures)
+  @Override
+  public void setAlignPdbStructures(boolean alignPdbStructures)
   {
     this.alignPdbStructures = alignPdbStructures;
   }
@@ -2795,86 +2271,36 @@ public class JalviewLite extends Applet implements
     // callInitCallback();
   }
 
-  private Hashtable<String, long[]> jshashes = new Hashtable<String, long[]>();
+  private Hashtable<String, int[]> jshashes = new Hashtable<>();
 
-  private Hashtable<String, Hashtable<String, String[]>> jsmessages = new Hashtable<String, Hashtable<String, String[]>>();
+  private Hashtable<String, Hashtable<String, String[]>> jsmessages = new Hashtable<>();
 
-  public void setJsMessageSet(String messageclass, String viewId,
-          String[] colcommands)
-  {
-    Hashtable<String, String[]> msgset = jsmessages.get(messageclass);
-    if (msgset == null)
-    {
-      msgset = new Hashtable<String, String[]>();
-      jsmessages.put(messageclass, msgset);
-    }
-    msgset.put(viewId, colcommands);
-    long[] l = new long[colcommands.length];
-    for (int i = 0; i < colcommands.length; i++)
-    {
-      l[i] = colcommands[i].hashCode();
-    }
-    jshashes.put(messageclass + "|" + viewId, l);
-  }
 
-  /*
-   * (non-Javadoc)
-   * 
-   * @see jalview.bin.JalviewLiteJsApi#getJsMessage(java.lang.String,
-   * java.lang.String)
-   */
   @Override
-  public String getJsMessage(String messageclass, String viewId)
+  public Hashtable<String, int[]> getJSHashes()
   {
-    Hashtable<String, String[]> msgset = jsmessages.get(messageclass);
-    if (msgset != null)
-    {
-      String[] msgs = msgset.get(viewId);
-      if (msgs != null)
-      {
-        for (int i = 0; i < msgs.length; i++)
-        {
-          if (msgs[i] != null)
-          {
-            String m = msgs[i];
-            msgs[i] = null;
-            return m;
-          }
-        }
-      }
-    }
-    return "";
+    return jshashes;
   }
 
-  public boolean isJsMessageSetChanged(String string, String string2,
-          String[] colcommands)
+  @Override
+  public Hashtable<String, Hashtable<String, String[]>> getJSMessages()
   {
-    long[] l = jshashes.get(string + "|" + string2);
-    if (l == null && colcommands != null)
-    {
-      return true;
-    }
-    for (int i = 0; i < colcommands.length; i++)
-    {
-      if (l[i] != colcommands[i].hashCode())
-      {
-        return true;
-      }
-    }
-    return false;
+    return jsmessages;
   }
 
-  private Vector jsExecQueue = new Vector();
+  private Vector<Runnable> jsExecQueue = new Vector<>();
 
-  public Vector getJsExecQueue()
+  @Override
+  public Vector<Runnable> getJsExecQueue(JSFunctionExec exec)
   {
+    jsFunctionExec = exec;
     return jsExecQueue;
   }
 
-  public void setExecutor(JSFunctionExec jsFunctionExec2)
-  {
-    jsFunctionExec = jsFunctionExec2;
-  }
+  // public void setExecutor(JSFunctionExec jsFunctionExec2)
+  // {
+  // jsFunctionExec = jsFunctionExec2;
+  // }
 
   /**
    * return the given colour value parameter or the given default if parameter
@@ -2894,8 +2320,8 @@ public class JalviewLite extends Applet implements
     Color col = ColorUtils.parseColourString(colprop);
     if (col == null)
     {
-      System.err.println("Couldn't parse '" + colprop
-              + "' as a colour for " + colparam);
+      System.err.println("Couldn't parse '" + colprop + "' as a colour for "
+              + colparam);
     }
     return (col == null) ? defcolour : col;
   }
@@ -2911,67 +2337,6 @@ public class JalviewLite extends Applet implements
   }
 
   /**
-   * form a complete URL given a path to a resource and a reference location on
-   * the same server
-   * 
-   * @param targetPath
-   *          - an absolute path on the same server as localref or a document
-   *          located relative to localref
-   * @param localref
-   *          - a URL on the same server as url
-   * @return a complete URL for the resource located by url
-   */
-  private String resolveUrlForLocalOrAbsolute(String targetPath,
-          URL localref)
-  {
-    String resolvedPath = "";
-    if (targetPath.startsWith("/"))
-    {
-      String codebase = localref.toString();
-      String localfile = localref.getFile();
-      resolvedPath = codebase.substring(0,
-              codebase.length() - localfile.length())
-              + targetPath;
-      return resolvedPath;
-    }
-
-    /*
-     * get URL path and strip off any trailing file e.g.
-     * www.jalview.org/examples/index.html#applets?a=b is trimmed to
-     * www.jalview.org/examples/
-     */
-    String urlPath = localref.toString();
-    String directoryPath = urlPath;
-    int lastSeparator = directoryPath.lastIndexOf("/");
-    if (lastSeparator > 0)
-    {
-      directoryPath = directoryPath.substring(0, lastSeparator + 1);
-    }
-
-    if (targetPath.startsWith("/"))
-    {
-      /*
-       * construct absolute URL to a file on the server - this is not allowed?
-       */
-      // String localfile = localref.getFile();
-      // resolvedPath = urlPath.substring(0,
-      // urlPath.length() - localfile.length())
-      // + targetPath;
-      resolvedPath = directoryPath + targetPath.substring(1);
-    }
-    else
-    {
-      resolvedPath = directoryPath + targetPath;
-    }
-    if (debug)
-    {
-      System.err.println("resolveUrlForLocalOrAbsolute returning "
-              + resolvedPath);
-    }
-    return resolvedPath;
-  }
-
-  /**
    * open a URL in the browser - resolving it according to relative refs and
    * coping with javascript: protocol if necessary.
    * 
@@ -2988,17 +2353,15 @@ public class JalviewLite extends Applet implements
         // form valid URL
         // Should really use docbase, not codebase.
         URL prepend;
-        url = resolveUrlForLocalOrAbsolute(
-                url,
-                prepend = getDefaultParameter("resolvetocodebase", false) ? getCodeBase()
+        url = JalviewAppLoader.resolveUrlForLocalOrAbsolute(url,
+                prepend = getDefaultParameter("resolvetocodebase", false)
+                        ? getCodeBase()
                         : getDocumentBase());
         if (debug)
         {
-          System.err
-                  .println("Show url (prepended "
-                          + prepend
-                          + " - toggle resolvetocodebase if code/docbase resolution is wrong): "
-                          + url);
+          System.err.println("Show url (prepended " + prepend
+                  + " - toggle resolvetocodebase if code/docbase resolution is wrong): "
+                  + url);
         }
       }
       else
@@ -3023,21 +2386,209 @@ public class JalviewLite extends Applet implements
     }
   }
 
-  /**
-   * bind structures in a viewer to any matching sequences in an alignFrame (use
-   * sequenceIds to limit scope of search to specific sequences)
-   * 
-   * @param alFrame
-   * @param viewer
-   * @param sequenceIds
-   * @return TODO: consider making an exception structure for indicating when
-   *         binding fails public SequenceStructureBinding
-   *         addStructureViewInstance( AlignFrame alFrame, Object viewer, String
-   *         sequenceIds) {
-   * 
-   *         if (sequenceIds != null && sequenceIds.length() > 0) { return
-   *         alFrame.addStructureViewInstance(viewer,
-   *         separatorListToArray(sequenceIds)); } else { return
-   *         alFrame.addStructureViewInstance(viewer, null); } // return null; }
-   */
+  @Override
+  public AlignViewportI getViewport()
+  {
+    return loaderFrame.getAlignViewport();
+  }
+
+  @Override
+  public void newStructureView(PDBEntry pdb, SequenceI[] seqs,
+          String[] chains, DataSourceType protocol)
+  {
+    loaderFrame.newStructureView(this, pdb, seqs, chains,
+            protocol);
+  }
+
+  @Override
+  public void alignedStructureView(PDBEntry[] pdb, SequenceI[][] seqs,
+          String[][] chains, String[] protocols)
+  {
+    loaderFrame.alignedStructureView(this, pdb, seqs, chains, protocols);
+  }
+
+  @Override
+  public void updateForAnnotations()
+  {
+    loaderFrame.alignPanel.fontChanged();
+    loaderFrame.alignPanel.setScrollValues(0, 0);
+  }
+
+  @Override
+  public void setFeatureGroupState(String[] groups, boolean state)
+  {
+    loaderFrame.setFeatureGroupState(groups, state);
+  }
+
+  @Override
+  public boolean parseFeaturesFile(String param, DataSourceType protocol)
+  {
+    return loaderFrame.parseFeaturesFile(param, protocol);
+  }
+
+  @Override
+  public void newFeatureSettings()
+  {
+    getViewport().setShowSequenceFeatures(true);
+    new FeatureSettings(loaderFrame.alignPanel);
+  }
+
+  @Override
+  public boolean loadScoreFile(String sScoreFile) throws IOException
+  {
+    return loaderFrame.loadScoreFile(sScoreFile);
+  }
+
+  @Override
+  public void loadTree(NewickFile tree, String treeFile) throws IOException
+  {
+    loaderFrame.loadTree(tree, treeFile);
+  }
+
+  @Override
+  public boolean isJsfallbackEnabled()
+  {
+    return jsfallbackEnabled;
+  }
+
+  @Override
+  public JSObject getJSObject()
+  {
+    return JSObject.getWindow(this);
+  }
+
+  @Override
+  public void updateColoursFromMouseOver(Object source,
+          MouseOverStructureListener listener)
+  {
+  }
+
+  @Override
+  public Object[] getSelectionForListener(SequenceGroup seqsel, ColumnSelection colsel,
+          HiddenColumns hidden, SelectionSource source, Object alignFrame)
+  {
+    // System.err.println("Testing selection event relay to
+    // jsfunction:"+_listener);
+      String setid = "";
+      AlignFrame src = (AlignFrame) alignFrame;
+      if (source != null)
+      {
+        if (source instanceof jalview.appletgui.AlignViewport
+                && ((jalview.appletgui.AlignViewport) source).applet.currentAlignFrame.viewport == source)
+        {
+          // should be valid if it just generated an event!
+          src = ((jalview.appletgui.AlignViewport) source).applet.currentAlignFrame;
+
+        }
+      }
+      String[] seqs = new String[] {};
+      String[] cols = new String[] {};
+      int strt = 0, end = (src == null) ? -1
+              : src.alignPanel.av.getAlignment().getWidth();
+      if (seqsel != null && seqsel.getSize() > 0)
+      {
+        seqs = new String[seqsel.getSize()];
+        for (int i = 0; i < seqs.length; i++)
+        {
+          seqs[i] = seqsel.getSequenceAt(i).getName();
+        }
+        if (strt < seqsel.getStartRes())
+        {
+          strt = seqsel.getStartRes();
+        }
+        if (end == -1 || end > seqsel.getEndRes())
+        {
+          end = seqsel.getEndRes();
+        }
+      }
+      if (colsel != null && !colsel.isEmpty())
+      {
+        if (end == -1)
+        {
+          end = colsel.getMax() + 1;
+        }
+        cols = new String[colsel.getSelected().size()];
+        for (int i = 0; i < cols.length; i++)
+        {
+          cols[i] = "" + (1 + colsel.getSelected().get(i).intValue());
+        }
+      }
+      else
+      {
+        if (seqsel != null && seqsel.getSize() > 0)
+        {
+          // send a valid range, otherwise we send the empty selection
+          cols = new String[2];
+          cols[0] = "" + (1 + strt) + "-" + (1 + end);
+        }
+      }
+      return  new Object[]
+    { src, setid, arrayToSeparatorList(seqs), arrayToSeparatorList(cols) };
+  }
+
+  @Override
+  public String getJsMessage(String messageclass, String viewId)
+  {
+    return JSFunctionExec.getJsMessage(messageclass, viewId, this);
+  }
+
+  @Override
+  public Object getFrameForSource(VamsasSource source)
+  {
+    if (source != null)
+    {
+      if (source instanceof jalview.appletgui.AlignViewport
+              && ((jalview.appletgui.AlignViewport) source).applet.currentAlignFrame.viewport == source)
+      {
+        // should be valid if it just generated an event!
+        return ((jalview.appletgui.AlignViewport) source).applet.currentAlignFrame;
+
+      }
+      // TODO: ensure that if '_af' is specified along with a handler
+      // function, then only events from that alignFrame are sent to that
+      // function
+    }
+    return null;
+  }
+
+  @Override
+  public FeatureRenderer getNewFeatureRenderer(AlignViewportI vp)
+  {
+    return new jalview.appletgui.FeatureRenderer((AlignmentViewport) vp);
+  }
+
+  @Override
+  public String getSelectedSequencesAsAlignment(String format,
+          boolean suffix)
+  {
+    // TODO Auto-generated method stub
+    return null;
+  }
+
+  @Override
+  public String getSelectedSequencesAsAlignmentFrom(AlignFrameI alf,
+          String format, boolean suffix)
+  {
+    // TODO Auto-generated method stub
+    return null;
+  }
+
+  // /**
+  // * bind structures in a viewer to any matching sequences in an alignFrame
+  // (use
+  // * sequenceIds to limit scope of search to specific sequences)
+  // *
+  // * @param alFrame
+  // * @param viewer
+  // * @param sequenceIds
+  // * @return TODO: consider making an exception structure for indicating when
+  // * binding fails public SequenceStructureBinding
+  // * addStructureViewInstance( AlignFrame alFrame, Object viewer, String
+  // * sequenceIds) {
+  // *
+  // * if (sequenceIds != null && sequenceIds.length() > 0) { return
+  // * alFrame.addStructureViewInstance(viewer,
+  // * separatorListToArray(sequenceIds)); } else { return
+  // * alFrame.addStructureViewInstance(viewer, null); } // return null; }
+  // */
 }