X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAssociatePdbFileWithSeq.java;h=c68914ceb28f3ee09352fd3d01dfffdb74ae9923;hb=refs%2Fheads%2Fbug%2FJAL-3489mapChainsFromFile;hp=1247ace9732076bfc5e80b5f33ebc811ce4c79fd;hpb=6d7ab37f37b09174ec61fee301aed6057ef86605;p=jalview.git diff --git a/src/jalview/gui/AssociatePdbFileWithSeq.java b/src/jalview/gui/AssociatePdbFileWithSeq.java index 1247ace..c68914c 100644 --- a/src/jalview/gui/AssociatePdbFileWithSeq.java +++ b/src/jalview/gui/AssociatePdbFileWithSeq.java @@ -23,11 +23,11 @@ package jalview.gui; import jalview.api.StructureSelectionManagerProvider; import jalview.datamodel.PDBEntry; import jalview.datamodel.SequenceI; +import jalview.io.DataSourceType; +import jalview.io.StructureFile; import jalview.structure.StructureSelectionManager; import jalview.util.MessageManager; -import javax.swing.JOptionPane; - /** * GUI related routines for associating PDB files with sequences * @@ -38,20 +38,25 @@ public class AssociatePdbFileWithSeq { /** - * assocate the given PDB file with + * Associates the given file as a PDB structure for the given sequence. * * @param choice + * @param file * @param sequence + * @param prompt + * @param ssmp + * @param forViewer + * @return */ - public PDBEntry associatePdbWithSeq(String choice, String protocol, + public PDBEntry associatePdbWithSeq(String choice, DataSourceType file, SequenceI sequence, boolean prompt, - StructureSelectionManagerProvider ssmp) + StructureSelectionManagerProvider ssmp, boolean forViewer) { PDBEntry entry = new PDBEntry(); - MCview.PDBfile pdbfile = null; + StructureFile pdbfile = null; pdbfile = StructureSelectionManager.getStructureSelectionManager(ssmp) - .setMapping(false, new SequenceI[] { sequence }, null, choice, - protocol); + .setMapping(forViewer, new SequenceI[] + { sequence }, null, choice, file); if (pdbfile == null) { // stacktrace already thrown so just return @@ -63,11 +68,11 @@ public class AssociatePdbFileWithSeq if (prompt) { - reply = JOptionPane.showInternalInputDialog(Desktop.desktop, + reply = JvOptionPane.showInternalInputDialog(Desktop.desktop, MessageManager .getString("label.couldnt_find_pdb_id_in_file"), MessageManager.getString("label.no_pdb_id_in_file"), - JOptionPane.QUESTION_MESSAGE); + JvOptionPane.QUESTION_MESSAGE); } if (reply == null) {