X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fapi%2Fstructures%2FJalviewStructureDisplayI.java;h=b4612cfef6264d1c87a07f70552a2c3a0bc1c0f9;hb=d7e95f458ebcbbdcc13f8b07357542ab2d7e4547;hp=c70a6145122036262821dc5dd9379920335b438a;hpb=25aaaa87042b3f507ad4348120df7dd073182759;p=jalview.git diff --git a/src/jalview/api/structures/JalviewStructureDisplayI.java b/src/jalview/api/structures/JalviewStructureDisplayI.java index c70a614..b4612cf 100644 --- a/src/jalview/api/structures/JalviewStructureDisplayI.java +++ b/src/jalview/api/structures/JalviewStructureDisplayI.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -48,13 +48,25 @@ public interface JalviewStructureDisplayI void dispose(); /** - * shutdown any structure viewing processes started by this display + * Shutdown any Jalview structure viewing processes started by this display + * + * @param closeExternalViewer + * if true, force close any linked external viewer process */ - void closeViewer(); + void closeViewer(boolean closeExternalViewer); + /** * apply a colourscheme to the structures in the viewer + * * @param colourScheme */ void setJalviewColourScheme(ColourSchemeI colourScheme); + /** + * + * @return true if all background sequence/structure binding threads have + * completed for this viewer instance + */ + boolean hasMapping(); + }